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 trialYasuhiko Tokunaga
928 Pointsis this not correct?
name = "yasuhiko"
is that not right??
name = "Yasuhiko"
2 Answers
jonlunsford
15,480 PointsFor part 1. This is correct For part 2. The challenge is asking for you to format a string using 'name' and add that to a variable called subject. The first line below is what I entered for part 1, and it passed. Then I added the second line for part 2 and it also passed.
name = "Jon"
subject = "Treehouse loves {}".format(name)
If your code is not passing using name = "Yasuhiko", then something must be wrong with the code interpreter.
Hope this helps!
Moderator Edit: Moved response from Comment section to Answers
Yasuhiko Tokunaga
928 PointsThank you for your help!! I could pass this work.