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 trialJulian Osterwalder
1,134 PointsPython beginner stage 2 code challenge
Have no idea why this is wrong or what is asked. anybody advice?
name = "Julian"
print(name)
treehouse = "Tree" + "house"
print(treehouse)
2 Answers
Ken Alger
Treehouse TeacherJulian;
The Challenge to which you are referring makes no reference to printing the variables name
or treehouse
. It is only asking to have the variables assigned the proper values.
Ken
Kenneth Love
Treehouse Guest TeacherAh, due to how that CC is coded, having those print()
lines there is causing the validation to fail. Take them out and you'll pass that step just fine.
I'll see about getting that CC code fixed so it doesn't blow up that way.