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 trialrickghostkeeper
1,175 PointsThings that count challenge task: Your days variable should end up as an int!
I have entered age = (my age) days = (age*52)/7
and keep getting the error: Your days variable should end up as an int! What is wrong with my code?
age = 39
days = (age*52)/7
1 Answer
rickghostkeeper
1,175 PointsGah!
I as dividing and not multiplying.... smh
Correct answer should be
days = int(age*52)*7