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 trialAshley Keeling
11,476 PointsI don't know why this isn't working
I have had lots of attempts and I don't know how to do this challenge
import datetime
def minutes():
time = datetime.datetime.now()
awnser = time - timedelta.total_seconds()
return awnser.replace(second=0)
1 Answer
Niko Klanecek
3,152 PointsThe instructions tell you that the minutes
method should take 2 inputs, like:
def minutes(time1, time2):
pass
Subtracting 2 datetime
s will automatically give you a timedelta
object so you can just do
def minutes(time1, time2):
return datetime.timedelta.total_seconds(time1 - time2)
But you also need to return it as minutes and rounded so:
def minutes(time1, time2):
return round(datetime.timedelta.total_seconds(time2 - time1) / 60)