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 trialRuonan Pi
5,455 PointsI don't know what is wrong
What's wrong with my code?
subject="Treehouse loves {}".format("rui")
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsTask 1 is looking for the variable name
set to a text string. Start with name =
Ruonan Pi
5,455 PointsRuonan Pi
5,455 Pointsthis is the task 2 . i don't know if the system have some problem and make it to task 1 again. I completed the task one.
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsOk. Then this code passes Task 2 if I leave the results in place from Task 1.
One correction I would make is since
name
was defined in Task 1, I would usename
as the argument toformat()
instead of retyping the literal string.