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 trial

Python Python Basics (2015) Python Data Types list.remove()

Thale van der Sluijs
Thale van der Sluijs
1,756 Points

Task 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

lists.py
states = [
    'ACTIVE',
    ['red', 'green', 'blue'],
    'CANCELLED',
    'FINISHED',
    5,
]
states.remove(5)
states.remove('red','green','blue')

2 Answers

You forgot the [] around the "red", "green", "blue".

Try this instead:

states.remove(['red','green','blue'])

Good luck! ~Alex

Thale van der Sluijs
Thale van der Sluijs
1,756 Points

Hey 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

Your welcome :)