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 Introducing Lists Using Lists Mutability

What makes a variable and a list different?

What makes a variable and a list different?, Thaanks

1 Answer

Steven Parker
Steven Parker
229,783 Points

A variable is like a box, you can put things into it. What kind of thing you put into the variable is up to you.

A list is an example of something you might put into that box, as are integer, string, custom object, set, and so on.

Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

Lately, I've been migrating to the definitions:

  • A variable is a label that points to an object. That is, the right-side of an assignment creates the object, the left-side of the assignment is a label that points to that object.
  • A list is a iterable collections of labels where each label points to an object.

Thank you Guys! Really appreciate is though