python calculate time code example
Example 1: python measure time
import time
start = time.time()
print("hello")
end = time.time()
print(end - start)
Example 2: how calculate time in python
import time
start = time.process_time()
print(time.process_time() - start)
Example 3: use datetime python to get runtime
from datetime import datetime
start = datetime.now()
print(datetime.now()-start)
Example 4: using python how to calculate the time
import time
start = time.time()
for i in range(10):
print(i)
time.sleep(1)
end = time.time()
print(f"Runtime of the program is {end - start}")
Example 5: check runtime python
import timeit
code = """[4, 2, 3, 1, 5].sort()"""
execution_time = timeit.timeit(code, number=1)
print(execution_time)