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

Quintan Kelly
Quintan Kelly
188 Points

"Do not change states directly." I cannot understand how states.remove (5) is incorrect. Challenge Task 1. What do I do?

I added quotations to the last item list '5' and used the .remove ('5'). But I used states.remove. IF NOT states.remove what else could I possible use? I've been stuck for weeks searching youtube and other various search engines. I can't be using .remove this terribly. What is it I can do to get past this and comprehend it?

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

1 Answer

Ryan S
Ryan S
27,276 Points

Hi Quintan,

Are you leaving a space between "remove" and the parentheses? If so, then that is causing your problem. When calling methods or functions the brackets need to be directly adjacent to the method name.

Your first attempt as you described in the title of your question is correct, without the space.

states.remove(5)  #correct
states.remove (5)  #incorrect