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

adding "quotes" inside parentheses in python. when and were?

I'm confused about when and when not to add quotes in my parentheses. Why is it that when I don't add quotes around current_count and upcoming_releases i get the sum of 14+2, but when I add quotes I get the answer "current_count + upcoming_releases"?

current_count = 14
upcoming_releases = 2
total = (current_count + upcoming_releases)
print(total)
16

current_count = 14
upcoming_releases = 2
total = ("current_count + upcoming_releases")
print(total)
current_count + upcoming_releases

1 Answer

Steven Parker
Steven Parker
243,318 Points

Never put quotes around variable names. Quotes identify literal strings, which is why you see the exact words between the quotes when you print it out.

And when posting code, use the instructions for code formatting in the Markdown Cheatsheet pop-up below the "Add an Answer" area. :arrow_heading_down:   Or watch this video on code formatting.