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 trialJirayu Piriyametha
2,987 Pointsit said "you did not create treehouse variable"
name =("a") Treehouse = "Tree" + "house"
name =("a")
Treehouse = "Tree" + "house"
1 Answer
shezazr
8,275 Pointsname =("a") isn't a valid syntax. go through the video again..
Jirayu Piriyametha
2,987 PointsJirayu Piriyametha
2,987 PointsThx 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.
Jirayu Piriyametha
2,987 PointsJirayu Piriyametha
2,987 Pointsname = "a"
Treehouse = "Tree" + "house"
This also didn't work
Jirayu Piriyametha
2,987 PointsJirayu Piriyametha
2,987 PointsI GOT IT!
I was spell treehouse wrong
I use capital T
anyway appreciate your help so much thx
Kenneth Love
Treehouse Guest TeacherKenneth Love
Treehouse Guest Teachername = ("a")
is actually fine. Python just ignores the parentheses when there's only one item inside (and no commas).