Python Calculate Time between two time stamps.
time
provides various time related functions.time.sleep()
Suspend execution of the calling thread for the given number of seconds.datetime
module to work with dates as date objects.
from datetime import datetime import time
- import
datetime
andtime
date1 = datetime.datetime(2021, 6, 1) date2 = datetime.datetime.now() diff = date2 - date1 print(diff)
returns
15 days, 18:05:48.305102