Answers for "how to calculate the difference in the datetime in python"

5

day difference between two dates in python

from datetime import date
d0 = date(2017, 8, 18)
d1 = date(2017, 10, 26)
delta = d1 - d0
print(delta.days)
Posted by: Guest on May-11-2020
1

python difference in dates in seconds

future_date = datetime.datetime(1970, 1, 2)
past_date = datetime.datetime(1970, 1, 1)

difference = (future_date - past_date)
Calculate difference in time


total_seconds = difference.total_seconds()
Convert time difference to seconds


print(total_seconds)
OUTPUT
86400.0
Posted by: Guest on October-11-2020

Code answers related to "how to calculate the difference in the datetime in python"

Python Answers by Framework

Browse Popular Code Answers by Language