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 trialAlex Ramirez
1,885 PointsPython Basics: Challenge Task 1 of 2: I am having trouble solving the this challenge.
messy = [5, 2, 8, 1, 3] del messy[8]
Is this in the right direction?
messy = [5, 2, 8, 1, 3]
del messy[8]
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! Yes, you're on the right track. We use del
to delete an item by referencing its index. And we use remove to remove an item given its value. You seem to have jumbled up the idea of value and index here. We want to use del
because the challenge requires it. But you're pointing to the index of 8 in the messy
list. Given that a list begins with the index of 0, what index does the value 8 occupy? The number 5 is at index 0.
Hope this helps, but let me know if you're still stuck!