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 Meet Python Variables

Blake Spendlove
Blake Spendlove
118 Points

Quotation marks

Why doesn't the variable need quotation marks? When I added them, it showed first_name instead of Ada. I'm curious - thanks!

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey Blake Spendlove, good question!

As the Python interpreter parses the code it, any letters grouped together are assumed to be a reference (aka label, variable name). Python looks up the reference in many namespaces (like dictionaries), starting with the local namespace, then in the namespaces for the enclosing layers (functions, classes, and modules), then finally global and built-in namespaces. If a reference can not be resolved, a NameError is raised.

The exception is when an opening quotation mark is found. Any characters encountered after the quotation mark will be become part of a str object until the matching closing quotation mark is found.

So first_name would be looked up as a variable and ”first_name” would become a 10-character string.

Post back if you need more help. Good luck!!!