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 trial

Python Dates and Times in Python (2014) Dates and Times Timedelta Minute

Ashley Keeling
Ashley Keeling
11,476 Points

I don't know why this isn't working

I have had lots of attempts and I don't know how to do this challenge

minutes.py
import datetime

def minutes():
    time = datetime.datetime.now()
    awnser = time - timedelta.total_seconds()

    return awnser.replace(second=0)

1 Answer

The instructions tell you that the minutes method should take 2 inputs, like:

def minutes(time1, time2):
    pass

Subtracting 2 datetimes 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)