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 trialAdrian Caballero
2,104 Points.format method
Hi there,
I can't seem to get passed this question. I'm asked to use the .format() method to place my name into the string "Treehouse loves {}". I even ran this is the shell with no issue. Why can't I pass this quiz :/
name = "Adrian"
subject = "Treehouse loves {}"
subject.format(name)
Wilton cruz-ramirez
10,159 Pointsthis may help!.
subject="treehouse loves {}".format(name)
1 Answer
Daniel Bourke
3,870 PointsYou're right. Your code does work. The challenge is asking for something very specific. I've run into this problem many times throughout challenges.
Try rearranging your subject variable so that it is all on one line and see how you go.
e.g.
subject = [YOUR CODE HERE]
Brian Young
5,708 PointsBrian Young
5,708 PointsScan through the video and look at how Kenneth formats it. Third line isn't needed.