Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Shayan Salehi
1,033 PointsWhy 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)
name = "shayan"
subject = "Treehouse loves {}"
subject.format(name)
1 Answer

Elad Ohana
24,456 PointsHi 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
1,033 PointsShayan Salehi
1,033 Pointsname = "Elad" comment = "Thanks a lot! {}".format(name)
:)