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 trialRyan Merritt
5,789 PointsPython Collections - Lists Redux: Removing List Items Quiz
Here's the problem:
my_list = [1,2,3,4]
I want to delete the 4 from my my_list using del.
_______________ my_list[ _____________ ]
The underscores signify answer fields. My goal is to submit
del(my_list[my_list.index(4)])
but I cannot add the closing parenthesis for the del function. Is there another syntax that I am missing? Thanks!
2 Answers
Kenneth Love
Treehouse Guest TeacherWhy are you looking up the index? You can see the list. Just delete that index.
emmettfunston
10,989 Pointsmy_list = [1, 4, 2, 3] I want to delete the 4 my from my_list using del.
This has no answer
Kenneth Love
Treehouse Guest TeacherIt totally has an answer. You delete items from a list using del
by using the index. What index is the 4 at?
Ryan Merritt
5,789 PointsRyan Merritt
5,789 PointsYes of course! So with the fill-in-the-blank style questions, there is no need to use parenthesis? Thanks
Kenneth Love
Treehouse Guest TeacherKenneth Love
Treehouse Guest TeacherIt'll depend on the question. On this one, I just wanted to make sure you could count indexes correctly and use the
del
keyword with a list.