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

Eric Ruiz
Eric Ruiz
12,595 Points

In the third step of the challange, I'm having problems with the step one, even when its been left unchanged.

I can't finish the challange.

days_alive.py
age = 21
days = (age*52*7)
estimate = round(days)
summary = "I am "+estimate+" days old!" 

In the third step of the challange, I'm having problems with the step one, even when its been left unchanged. 

1 Answer

boog690
boog690
8,987 Points

The variable estimate is of type int. For step three, it asks that estimate be converted to type String before being concatenated into summary. So, for your answer, make sure to convert the variable estimate into a string.

Also, for added practice, try and use the "I am {} days old" string and the String.format() method. This practice will help you in the long-run.