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

2 Answers

Hi there,

Try this ...

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

Task 1 is asking you to create a variable name with a name assigned to it, so you need something like this:

name = "Kelvine Chawora"

The second task is asking you to use concatenation to combine tree and house, hence:

treehouse = "Tree" + "house"

..and on the final task, you need to use the str.format to join the created variables with a word in the middle to create a sentence, like this:

email_greeting = "{} loves {}".format(treehouse, name)

At the end of the challenges, you should have something like this:

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