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 trialDakota Gagne
Courses Plus Student 342 PointsHow do I create a variable named treehouse by combining two strings, "Tree" and "house"?
I have watched the video on it many times, but I still cannot find out the answer.
name = "Dakota"
1 Answer
Andreas cormack
Python Web Development Techdegree Graduate 33,011 Pointsyou can create a variable by concatinating the two strings.
treehouse = "Tree"+"house"
Dakota Gagne
Courses Plus Student 342 PointsDakota Gagne
Courses Plus Student 342 PointsThat worked! Thanks.