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.

Kevin Park
5,091 PointsWhat did I do wrong?
so my code is as follows: name = "Kevin" subject = "Treehouse loves {}" subject.format(name)
I'm really puzzled as to what I'm doing wrong. It works fine in the Python Shell but here it just reminds me to use the {} placeholder and .format(). Thank you for any assistance you can provide!
name = "Kevin"
subject = "Treehouse loves {}"
subject.format(name)
2 Answers

Jeremy Hill
29,567 PointsYou should only be using two lines of code: the first line setting the variable 'name' to your name and the second line setting the variable 'subject' equal to the line that they provided and adding the brackets and the .format with the variable 'name'.

Kevin Park
5,091 PointsHow silly of me. Thanks for the help!
Nikolai Montesclaros
11,928 PointsNikolai Montesclaros
11,928 PointsHi Kevin. If you read the problem you did not do the last part which you needed to assign the value back to something.