Monday, June 15, 2026
HomeLanguagesPython | Difference between two dates (in minutes) using datetime.timedelta() method

Python | Difference between two dates (in minutes) using datetime.timedelta() method

To find the difference between two dates in Python, one can use the timedelta class which is present in the datetime library. The timedelta class stores the difference between two datetime objects. 
To find the difference between two dates in form of minutes, the attribute seconds of timedelta object can be used which can be further divided by 60 to convert to minutes.
Example 1:
The following program takes two datetime objects and finds the difference between them in minutes.  

Python3




import datetime
 
# datetime(year, month, day, hour, minute, second)
a = datetime.datetime(2017, 6, 21, 18, 25, 30)
b = datetime.datetime(2017, 5, 16, 8, 21, 10)
 
# returns a timedelta object
c = a-b
print('Difference: ', c)
 
minutes = c.total_seconds() / 60
print('Total difference in minutes: ', minutes)
 
# returns the difference of the time of the day
minutes = c.seconds / 60
print('Difference in minutes: ', minutes)


Output:

Difference:  36 days, 10:04:20
Difference in minutes:  604.3333333333334

Time Complexity : O(1)

Space Complexity : O(1)
 

Example 2: 
To get a more appropriate answer divmod() can be used which will return the fractional part of the minutes in terms of seconds:  

Python3




import datetime
 
# datetime(year, month, day, hour, minute, second)
a = datetime.datetime(2017, 6, 21, 18, 25, 30)
b = datetime.datetime(2017, 5, 16, 8, 21, 10)
 
# returns a timedelta object
c = a-b
print('Difference: ', c)
 
# returns (minutes, seconds)
minutes = divmod(c.total_seconds(), 60)
print('Total difference in minutes: ', minutes[0], 'minutes',
                                 minutes[1], 'seconds')
 
# returns the difference of the time of the day (minutes, seconds)
minutes = divmod(c.seconds, 60)
print('Total difference in minutes: ', minutes[0], 'minutes',
                                 minutes[1], 'seconds')


Output:

Difference:  36 days, 10:04:20
Difference in minutes:  604 minutes 20 seconds

Time Complexity : O(1)

Space Complexity : O(1)

RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS