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 String Formatting

Shayan Salehi
Shayan Salehi
1,033 Points

Why does this use of placeholders not work? name = "shayan" subject = "Treehouse loves {}" subject.format(name)

I get an error when I try to do this task. Am I making a very obvious mistake? (sorry newbie)

strings.py
name = "shayan"
subject = "Treehouse loves {}"
subject.format(name)

1 Answer

Elad Ohana
Elad Ohana
24,456 Points

Hi Shayan,

The challenge is asking you to assign the fully formatted string into the variable subject. Your code currently assigns the template to subject, then throws out the formatted string (the '.format(). method doesn't actually change the value of the variable it's called on). So your subject variable still has the value "Treehouse loves {}" after your code runs.

Hope this helps. Elad

Shayan Salehi
Shayan Salehi
1,033 Points

name = "Elad" comment = "Thanks a lot! {}".format(name)

:)