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 trialKevin Selagea
2,161 PointsHow do I remove all of the colors now??
I need to remove all 3 values now, instead of 1. How do I do that??
states = [
'ACTIVE',
['red', 'green', 'blue'],
'CANCELLED',
'FINISHED',
5,
]
states.remove()
1 Answer
Katie Wood
19,141 PointsHello again,
First, make sure you keep the states.remove(5) from the previous step - you usually don't want to delete past steps unless it tells you to. For this one, you can pass a list to .remove(). It looks like this:
states.remove(['red', 'green', 'blue'])
You're basically telling it to find that specific list and remove it.