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 trialMatthew Hosking
17,404 PointsHow do I do this one?
I'm really confused with this one. This is the latest bit of code I have tried.
I'd be grateful for any help.
Thanks.
import datetime
def minutes(date_time1, date_time2):
return round((datetime.timedelta.total_seconds(date_time2) - datetime.timedelta.total_seconds(date_time1)) / 60)
1 Answer
Christian Beckett
11,123 PointsAssuming that this is in python I believe your answer should look like this
import datetime
def minutes(datetime1, datetime2):
time_delta = datetime2- datetime1
minutes = round(time_delta.total_seconds() / 60)
return minutes
Matthew Hosking
17,404 PointsThanks, that worked.
Megan Amendola
Treehouse TeacherMegan Amendola
Treehouse TeacherHere's a great explanation