ghow to check how much time a python program took code example
Example 1: record the amount of time ittales for code to run python
from time import time
start = time()
print(f'Time taken to run: {time() - start} seconds'
Example 2: find time of run for python code
import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))
Example 3: 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}")