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 Manipulating Lists

Use .remove and/or del

I have tried this probably 15 different ways, and no matter how I format it, I got an error saying that Task1 is no longer passing (task one is to move the 1 from index 3 to 0).

lists.py
the_list = ["a", 2, 3, 1, False, [1, 2, 3]]

# Your code goes below here
the_list.pop(3)
the_list.insert(0, 1)
the_list.remove('a')
del the_list[4]
del the_list[5]

1 Answer

Hanley Chan
Hanley Chan
27,771 Points

Hi,

Looks like your last delete statement is trying to delete from an index that doesn't exist. It should be deleting the entry with index 3.

the_list = ["a", 2, 3, 1, False, [1, 2, 3]]

# Your code goes below here
the_list.pop(3) # the_list contains ["a", 2, 3, False, [1,2,3]]
the_list.insert(0, 1) # [1, "a", 2, 3, False, [1,2,3]]
the_list.remove('a')  # [1, 2, 3, False, [1,2,3]]
del the_list[4] # [1,2,3,False]
del the_list[3] # [1,2,3]