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!
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 trial

Gokul Ravichandran
209 PointsFinally, create a new variable named summary that inserts days into the string "I am {} days old!".
Finally, create a new variable named summary that inserts days into the string "I am {} days old!".
age=25
days=age*52*7
summary=print("I am {} days old!").format(days)
1 Answer

Chris Freeman
Treehouse Moderator 68,404 PointsVery close! You do not need the print
:
summary = "I am {} days old!".format(days)