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 trialTzu-Hsuan Yen
196 PointsI dont know how to use "str.format"
I dont know how to use "str.format"
name = "mark"
treehouse = "Tree"+"house"
email_greeting = "{} loves {}".format(name,treehouse)
2 Answers
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsYou're using it right. I'm trying to step through the challenge to check your code but the system seems to be slow. Possible problems that I can see:
maybe they want "Treehouse loves mark" instead of "mark loves Treehouse"? (in which case you would put the variables in the other order)
why is the variable treehouse "Tree"+"house" - is that what they asked for?
Chris Freeman
Treehouse Moderator 68,441 PointsYou are using it correctly, you need to reverse name
and treehouse
to get "Treehouse loves mark" instead of "mark loves Treehouse".
Tzu-Hsuan Yen
196 PointsYou guys were right.
Tzu-Hsuan Yen
196 PointsTzu-Hsuan Yen
196 PointsThank you.