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 trialjohnworg
1,280 PointsRemoving in Python
What is the difference between
states.remove(5) states.remove([5])
When doing this challenge(List removal), it looked like the list was written in brackets but didn't seem to require them to remove...does anyone know why?
1 Answer
jacinator
11,936 Pointsstates.remove(5)
tells Python to remove the first instance of the value 5
from the list states
.
states.remove([5])
tells it to remove the first sublist of [5]
from the list states
.
I don't think that it would affect the behaviour of your code, it's just a syntax difference.