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 trialKhaleel Yusuf
15,208 PointsWrite a function named minutes that takes two datetimes and, using timedelta.total_seconds() to get the number of second
I need so much help.
from datetime import timedelta
def minutes(datetime1, datetime2):
number_of_seconds = datetime2.total_second() - datetime1.total_second()
minutes = round(number_of_seconds / 60)
return minutes
3 Answers
Stuart McIntosh
Python Web Development Techdegree Graduate 22,874 PointsApologies if not clear. Does this makes sense
import datetime
def minutes(datetime1, datetime2):
time_delta = datetime2 - datetime1
minutes = round(time_delta.total_seconds() / 60)
return minutes
I havent tested the above. But the key is that a datetime does not have an attribute totalseconds() a timedelta has. A timedelta is the difference between two dates or times in (days, minutes etc...) A
Khaleel Yusuf
15,208 PointsI still don't understand what you're saying.
Stuart McIntosh
Python Web Development Techdegree Graduate 22,874 PointsHi there, nearly!
You first have to get a timedelta to use the totalseconds function. You can do that buy subtracting the datetimes
td = datetime1 - datetime2
you can then use the totalseconds on the timedelta
Hope that makes sense!!!