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 trialRichmond Baker
620 PointsI am thinking I am not understanding your question. What is wrong with my current code?
Did I misunderstand the question? I have took two strings and made it a single variable. when try this code in a in a *.py script it works.
name1 = "Tree"
name2 = "house"
name3 = ("{}{}".format(name1,name2))
print("{}".format(name3))
2 Answers
Kenneth Love
Treehouse Guest TeacherTo pass the code challenge, if nothing else, you have to use the asked-for variable names. After that, though, the challenge wants you to use string concatenation for "Treehouse", so you'll need to use +
instead of .format()
.
Richmond Baker
620 PointsGot it thanks,