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

how do you create a variable named with my name in it.

need help please

name.py

Hi alec burnett,

could you let us see what you have tried so far? If you have watched the videos carefully you should have a pretty good idea how to do it. It is fairly easy. I want to help you if you have problems but I don't think that just posting the answer is the best option. So let us know what your problems are with this exercise :)

i cant hear what the dude says sooo yea lol

6 Answers

Hi alec burnett , Try this code:

name = "Alec Burnett"

thank you umar alkhamis

You're welcome alec burnett :)

Ruben Barrera
PLUS
Ruben Barrera
Courses Plus Student 602 Points

number 3 on this quiz is not working for me any help?

Hi Ruben Barrera , this is how to do all the parts of the exercise. Part 1:

name = "Umar"

Part 2:

treehouse = "Tree" + "house"

Part 3:

email_greeting = treehouse + " loves " + name

I hope that helped :+1:

Ruben Barrera
PLUS
Ruben Barrera
Courses Plus Student 602 Points

number 3 on this quiz is not working for me any help?

no umar none of that worked sorry any other choices

Hi alec burnett,

Show me your code, this will help me find out what's wrong :)

ok i got it all right but on #3 it says its wrong and i type just like my friend who got it right and just like how you said

Please show me your code because it's hard to find out what's wrong without seeing the code

  1. name = "alec burnett" got that one right
  2. treehouse = "Tree"+"house" got that one right 3.email_greeting = treehouse +"loves"+ name and it says its wrong

alec burnett ,,

you just need to add space before & after the word loves because right now it's like this

Treehouselovesalec burnett

Now try this

email_greeting = treehouse + " loves " + name 

Notice the space before & after the word loves!

hope this works for you

yep thanks that worked thanks

Awesome :+1: :+1: