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.

Mauricio Arellano
402 Pointsnot getting it
a
name = "Mauricio"
subject = "Treehouse loves{}"
print (subject.format (name))
2 Answers

bryonlarrance
16,414 Pointsname = 'Bob'
subject = "Treehouse loves {}".format(name)
Name is a variable that holds 'Bob'.
Subject is a variable that contains the sentence "Treehouse loves {}"
We then use .format() to change the {} to the variable name. Let me know if you have more questions.

Kurt Maurer
16,725 PointsHey Mauricio,
They want subject
to read Treehouse loves Mauricio
, so you need .format(name)
at the end of Treehouse loves Mauricio
. You don't need the print statement, but for future reference, you will get a syntax error with your spaces between print
and ()
, and format
and ()
. Hope this helps, let me know if you need any more assistance!