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 Collections (Retired) Lists Redux Removing list items

Ryan Merritt
Ryan Merritt
5,789 Points

Python 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
STAFF
Kenneth Love
Treehouse Guest Teacher

Why are you looking up the index? You can see the list. Just delete that index.

Ryan Merritt
Ryan Merritt
5,789 Points

Yes of course! So with the fill-in-the-blank style questions, there is no need to use parenthesis? Thanks

Kenneth Love
Kenneth Love
Treehouse Guest Teacher

It'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.

my_list = [1, 4, 2, 3] I want to delete the 4 my from my_list using del.

This has no answer

Kenneth Love
Kenneth Love
Treehouse Guest Teacher

It totally has an answer. You delete items from a list using del by using the index. What index is the 4 at?