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 trialTrace Harris
Python Web Development Techdegree Graduate 22,065 PointsIs there an issue with my logic
So my understanding is that I am supposed to get the total seconds for each, then subtract the 1st from the second then floor divide by 60 and return that value, or should I subtract datetime1 from datetime2 then get the timedelta.total_seconds() and divide by 60 and return the resulting value?
import datetime
def minutes(dt_one, dt_two):
seconds_one = dt_one.timedelta.total_seconds()
seconds_two = dt_two.timedelta.total_seconds()
total_sec =seconds_one - seconds_two
t1 = total_sec // 60
return t1
1 Answer
Steven Parker
231,236 PointsYou're on the right track with your alternate suggestion. You get the total seconds from the difference between the times, which will be a timedelta. Here's a few other hints:
- you'll need to subtract the times first
- the function "total_seconds" is used on a timedelta but does not have that word in it's name
- the challenge wants "the number of minutes, rounded", not truncated ("floor"ed)