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 trialSimon Nordström
492 PointsHey, i need help with an execise in the string.py section
The program wants me to write a code with strings and whatever i do and no matter how many tries i do it doesnt seem to be right somehow
OK, now use .format() on the string "Treehouse loves {}" to put your name into the placeholder. Assign this to the variable subject (so start with subject =).
Get back as soon as possible, thanks
name = "simon"
format(name)
subject = format("Treehouse loves {simon}")
1 Answer
Christian Rowden
2,278 PointsHello
Your syntax is just a bit off. "Treehouse loves {}.".format(name)
This should get you pointed in the right direction.
Cheers and happy coding.