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

challenge Task 3 of 3

stuck creating a variable x and y

name.py
name = 'jawstech'
treehouse = 'Tree' + 'house'
email_greeting = 'name' + 'Treehouse' 

2 Answers

Brian Douglas
Brian Douglas
822 Points

You have almost got it.

Remember quotations make a string, you want to call a variable.

The below is what you are looking for.

    email_greeting = name + treehouse
Joshua Edwards
Joshua Edwards
52,175 Points

in part 3 you want to reference the variables name and treehouse when setting email_greeting and not set email_greeting to string values as you have in your code.