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 trialJustin Lee
Courses Plus Student 593 PointsHow to remove item from list?
not sure what to do
states = [
'ACTIVE',
['red', 'green', 'blue'],
'CANCELLED',
'FINISHED',
5,
]states.remove('blue')
1 Answer
Brett McGregor
Courses Plus Student 1,903 PointsHi Justin,
place the states.remove()
on a new line
if you are trying to remove the nested list, then you'll need to quote the entire list i.e. ['red', 'green', 'blue']
I find I am able to figure these challenges out more easily when I write the code locally on my machine in IDLE and execute the module from there. That way you get the direct error feedback from Python. e.g. when I execute your code above I get syntax error from Python. Any little clue helps!
[MOD: changed from comment to answer - srh]
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsHi oldergit
I've moved a couple of your comments into answers - keep up the good work and post answers initially; you're mega-helpful!
Thanks for your contributions!
Steve.