Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics (Retired) Putting the "Fun" Back in "Function" Shopping List Redux

dejankerneza
dejankerneza
8,336 Points

How to make a function that would delete item in shopping_list with index we would input?

I have this code and it doesn't work.

def delete_item(shopping_list):
    index = input("Enter index of element you wish to delete: ")
    del shooping_list[index]

1 Answer

Stephen Bone
Stephen Bone
12,359 Points

Hi Dejan

You've got a spelling mistake on your delete line as your trying to use a shooping_list rather than shopping_list.

The actual problem with this though is that the input method returns a string value but an int value must be specified for indexing.

So a possible way around this would be to use the built in int function to convert it. As below:

def delete_item(shopping_list):
    index = input("Enter index of element you wish to delete: ")
    del shopping_list[int(index)]

Hope it helps!

Stephen