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 trialMUZ140907 Wellington Maredza
3,014 Pointsemail_greeting putting treehouse and name variable in the sentence "X loves Y"??????
i don't know where exactly am i going wrong because its saying task 1 is no-longer passing and i have tried to do it so fast thinking that maybe i am taking too long to write the answer but still nothing, can you help please
name=("wellington")
treehouse=("Tree"+"house")
email_greeting="{} "loves" {}".format(treehouse, name)
2 Answers
man odell
1,905 Pointsname=("wellington") treehouse=("Tree"+"house") email_greeting="{} loves {}".format(treehouse, name) u should write it in same location " "
Daixial Bosyxorelky
Courses Plus Student 720 PointsEverything is fine except one thing!
email_greeting="{} "loves" {}".format(treehouse, name)
It needs to be:
email_greeting="{} loves {}".format(treehouse, name)
Because 'X loves Y' is one sentence and everything needs to be in " & ".