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 trialDenis Ts
2,751 PointsHI what can be wrong here I have tried to delete "2" with [1] and also [-3] still not successfully
i have to remove even numbers from list in previous task i have removed "8" by del messy[2] now im trying to delete "2" but without success used del messy[1] and del messy[-3]
can someone please suggest ?
messy = [5, 2, 8, 1, 3]
del messy[-3]
1 Answer
Denis Ts
2,751 PointsHI Nicolas
yes , you are right the problem was that i didnt noticed that new code has to be added to the code from the previous task
thanks for your help
jp28
3,413 Pointsjp28
3,413 PointsHey here i got the code that I used for that task:
messy = [5, 2, 8, 1, 3] del messy[2] del messy[1]
it worked for me:) Hope I helped