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 trialben brady
583 PointsI 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.
age = 39
days = age*52*7
summary = "I am " + days + " days old!"
2 Answers
shezazr
8,275 Pointsstr() is the function you need..
Dalton DeMaria
5,679 PointsRemember to use help() and dir() in the console to see more information on your classes and objects. shez is correct. You want str()