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 trialThale van der Sluijs
1,756 PointsTask 1 no longer passing
So I already did task 1 and I changed nothing about it in task 2, but they say that Task 1 is no longer passing. Any1 a answer?
Thanks, Thale van der Sluijs
states = [
'ACTIVE',
['red', 'green', 'blue'],
'CANCELLED',
'FINISHED',
5,
]
states.remove(5)
states.remove('red','green','blue')
2 Answers
Alexander Davison
65,469 PointsYou forgot the [] around the "red", "green", "blue".
Try this instead:
states.remove(['red','green','blue'])
Good luck! ~Alex
Thale van der Sluijs
1,756 PointsHey Alexander,
Thanks! I didn't knew you had to but braces when u are using normal letters, but now I know!
Thanks, Thale van der Sluijs
Alexander Davison
65,469 PointsYour welcome :)