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 trialClayton William
9,151 Pointspython -- datetime
I am not sure what is wrong here.
import datetime
def minutes(first, second):
round(second.minute - first.minute)
2 Answers
C H
6,587 PointsI found this one confusing as well. What happens is when you subract a datetime from a datetime, you get a time delta. If you were to print out that time delta it would contain years:days:seconds:milliseconds ; no minutes in it. Without just giving you the answer, I hope this information helps. The code below is to help clarify what I'm verbally saying.
difference = second - first
print(difference)
# Would be something along the lines of 0:00:4600:1234567
return round(difference.....)
Clayton William
9,151 PointsThanks for your quick response! That worked!