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 trialJaCarla Anderson
6,116 PointsHow do you do this challenge: And, finally, we need to remove that 2. Can you delete it with del, too? Thanks!
Please help!
messy = [5, 2, 8, 1, 3]
del messy[2]
1 Answer
Steven Parker
231,236 PointsYou already removed the "8" in step 1. Removing the "2" is exactly the same, only with a different index:
messy = [5, 2, 8, 1, 3]
del messy[2] # this removes the "8"
del messy[1] # this removes the "2"