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 trial

Python Python Basics (Retired) Things That Count Things That Count

Jerome Yearwood
Jerome Yearwood
401 Points

days_alive challenge task.

I'm stuck at the the variable summary part the Challenge task. Have trouble adding days as a string.

days_alive.py
age = 27

days = age*52*7

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

Jerome;

Welcome to Treehouse!

Task 3 is wanting us to utilize the string formatting method that was discussed in the course. An example would be something like:

name = "Jerome"

hello_statement = "Hello, my name is {}".format(name)

Hopefully that points you in the proper direction. Post back if you are still stuck.

Happy coding.
Ken