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 trialTaro Tiankanon
2,208 PointsNeed clarification on this .remove() problem
The question asked to:
Use .remove() and/or del to remove the string, boolean, and list members of the_list.
And my code is the following...
I'm wondering why the list data type ([1,2,3]) is still on the list after this for loop?
the_list = ["a", 2, 3, 1, False, [1, 2, 3]]
# Your code goes below here
the_list.insert(0,the_list.pop(3))
for value in the_list:
if type(value) is list or type(value) is bool or type(value) is str:
the_list.remove(value)
1 Answer
Steven Parker
231,236 PointsPython gets confused when you remove items from the set that controls the loop. In this case, the loop is ending prematurely and last item is never seen. You can avoid this peculiarity by making sure your loop uses a copy of the list you will be modifying:
for value in the_list[:]:
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsSo I'd do this instead, which is much simpler:
Hope that helps! ~xela888