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 trial

Python Python Basics (Retired) Ins & Outs Ins & Outs

Tzu-Hsuan Yen
Tzu-Hsuan Yen
196 Points

I dont know how to use "str.format"

I dont know how to use "str.format"

name.py
name = "mark"
treehouse = "Tree"+"house"
email_greeting = "{} loves {}".format(name,treehouse)

2 Answers

Brendan Whiting
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Brendan Whiting
Front End Web Development Techdegree Graduate 84,736 Points

You'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
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

You are using it correctly, you need to reverse name and treehouse to get "Treehouse loves mark" instead of "mark loves Treehouse".

Tzu-Hsuan Yen
Tzu-Hsuan Yen
196 Points

You guys were right.