execute python on time 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: how to record execution time in python
import time
start = time.time()
print("hello")
end = time.time()
print(end - start)