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()

kevin burns
kevin burns
2,570 Points

stuck!!!

I think my code is good ?? help what is wrong???

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


states.remove(5)

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

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! You've overwritten the original value of states with your own array of the same name. Only one line needs to be removed to pass, but one line is unnecessary. If I simply remove these two lines of code, it passes both steps:

states = [ 'ACTIVE', ['red', 'green', 'blue'], 'CANCELLED', 'FINISHED',  ]
x = ['red', 'green', 'blue']

On a side note, it's a good idea to avoid doing things that are not explicitly asked for by the challenge. Even if functional, it can cause the challenge to fail.

Hope this helps! :sparkles:

kevin burns
kevin burns
2,570 Points

got it .. and it worked !! thank you!!!