Answers for "python find time difference in weeks"

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
1

pyhton find dates in weeks

>>> import datetime
>>> datetime.date(2010, 6, 16).isocalendar()[1]
24
Posted by: Guest on May-29-2020

Code answers related to "python find time difference in weeks"

Python Answers by Framework

Browse Popular Code Answers by Language