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 trialMark Casavantes
Courses Plus Student 13,401 PointsOpps. It looks like Task 1 is no longer passing. Where did I go wrong?
Task 1 and Task 2 initially passed. When I get to Task 3 I get the error message in the title. I assume I am making an error on line 5.
name = "Mark"
tree = "Tree"
house = "house"
treehouse = tree + house
email_greeting = name "loves "treehouse
2 Answers
Dan Johnson
40,533 PointsYou'll want to add +
to both sides of the " loves "
string so the interpreter knows you want to concatenate them. Be mindful of the white space in the string as well.
Gordon Reeder
2,521 PointsAnd I believe that the correct output should be Treehouse loves name.
Mark Casavantes
Courses Plus Student 13,401 PointsThank you Gordon,
I should have read the question better.
Thank you for your feedback.
Mark Casavantes
Courses Plus Student 13,401 PointsMark Casavantes
Courses Plus Student 13,401 PointsThank you Dan! I appreciate all your help!