programming-examples/python/Date/Calculate number of days between two datetimes.py

11 lines
332 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import datetime
from datetime import datetime
def differ_days(date1, date2):
a = date1
b = date2
return (a-b).days
print()
print(differ_days((datetime(2016,10,12,0,0,0)), datetime(2015,12,10,0,0,0)))
print(differ_days((datetime(2016,10,12,0,0,0)), datetime(2015,12,10,23,59,59)))
print()