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

i have no idea what im doing wrong when i mulitply years by days and assign it to days i have no idea what im doing wron

,,,,,,

age.py
years = 23

1 Answer

Vidhya Sagar
Vidhya Sagar
1,568 Points

A year has 365 days. So if you want to know how many days you have lived, You got to multipy the years ny 365 to obtain the days lived. Here is your code

years=21
days=years*365
weeks=days/7