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 trialMichael Adkins
266 PointsTrying to make the summary of days I have been alive.
When I try to make a variable of the number of days I have been alive it says I need to use str.format. I was under the impression that is what I was doing. What am I missing?
age = 31
days = age * 52 * 7
summary = "I am {} days old!".format (days)
Michael Adkins
266 Pointsage = 31
days = age * 52 * 7
summary = "I am {} days old!".format (days)
[MOD: added ```python formatting -cf]
Chris Freeman
Treehouse Moderator 68,441 PointsWhile your code will pass the Python interpreter due to its generous overlooking of an extra space between "format" and the "(", the challenge checker is looking for the pattern "format(" so the space must be removed.
It's also good practice and PEP-8 styling to not put a space between the method and the paren.
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsI suspect you are looking for
# Task 3 of 3
# Finally, create a new variable named 'summary' that inserts days
# into the string "I am {} days old!".
summary = "I am {} days old!".format(days)
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsCan you post your code?