find python program run time code example

Example 1: record the amount of time ittales for code to run python

from time import time

start = time()
#code here
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

# starting time
start = time.time()

# program body starts
for i in range(10):
    print(i)

# sleeping for 1 sec to get 10 sec runtime
time.sleep(1)

# program body ends

# end time
end = time.time()

# total time taken
print(f"Runtime of the program is {end - start}")