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

I am learning Python Basic and I do not remember how to change a number to a string. Do you know the command.

I am learning Python Basic and I do not remember how to change a number to a string. Do you know the command.

days_alive.py
age = 39
days = age*52*7
summary = "I am " + days + " days old!"

2 Answers

str() is the function you need..

Dalton DeMaria
Dalton DeMaria
5,679 Points

Remember to use help() and dir() in the console to see more information on your classes and objects. shez is correct. You want str()