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 trialKevin Park
5,935 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,935 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.