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 trialShayan 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)
:)