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 trialTashfin Shahid
Courses Plus Student 119 PointsTask 1 is no longer passing
Now we need to 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.
years = 24
years *= 365
years = days
1 Answer
juliansteffen
9,802 PointsDear Tashfin,
the exam kind of need the structure of the tasks before You need three variable for this tasks.
years *= 365 is years = 24*365 But the programm need a variable named = days And years = days The variable days is not defined here so here is a problem.
years = 32
days = years * 365
weeks = days / 7
I hope this could help you.
Greetings Julian
Tashfin Shahid
Courses Plus Student 119 PointsTashfin Shahid
Courses Plus Student 119 PointsThank you for your help