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

it said "you did not create treehouse variable"

name =("a") Treehouse = "Tree" + "house"

name.py
name =("a")
Treehouse = "Tree" + "house"

1 Answer

name =("a") isn't a valid syntax. go through the video again..

Thx so much for answer. anyway I actually didn't have problem with the first line of code. I changed name = ("Anything is ok") the program let me pass the first task but the second line is the problem I can't pass the second task.

name = "a"

Treehouse = "Tree" + "house"

This also didn't work

I GOT IT!

I was spell treehouse wrong

I use capital T

anyway appreciate your help so much thx

Kenneth Love
Kenneth Love
Treehouse Guest Teacher

name = ("a") is actually fine. Python just ignores the parentheses when there's only one item inside (and no commas).