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 (2015) Python Data Types Age Calculation

multiply the number years by the number of days in a year. We'll ignore leap years, so just multiply years by 365 and as

multiply the number years by the number of days in a year. We'll ignore leap years, so just multiply years by 365 and assign it to the variable days.

age.py
years = 13
day = 1
year = 365 days
age = year * day
Idan shami
Idan shami
13,251 Points

HI ! you don't need to create a variable named age and year, also you need to add "s" to days, you need to multiply years by 365(the number of the days in a year) and assign it to the variable days
here is the solution

years = 13
days = years * 365

English isn't my native language so I hope my explanation was clear.