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 trialAshley Stewart
3,519 PointsFormat method.
How to format? I have tried print(the variable name.format()
name = "Ashley"
subject = "Treehouse loves {}"
print(subject.format(name))
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsYou are very close
name = "Ashley"
subject = "Treehouse loves {}".format(name)
Alexander Lourenco
7,577 PointsOut of curiosity, what is the behavior you're getting? Chris' example will work, but the original example should work as well- since subject is a string, you can call its format method on it. Your pasted code runs for me in both python 2 and python 3.
Chris Freeman
Treehouse Moderator 68,441 PointsHi Alexander. It has to do with the expectations of the challenge grader and not what will simply run. The print doesn't set the new value of subject
. Plus the grader wants the format on the same line as the string template.