how to time how long an function takes in python code example
Example 1: find time of run for python code
import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))
Example 2: python print how long it takes to run
import time
start_time = time.time()
print ("My program took", time.time() - start_time, "to run")
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}")