Answers for "record time of an operation in python"

2

How to check how much time elapsed Python

import time
t0= time.clock()
print("Hello")
t1 = time.clock() - t0
print("Time elapsed: ", t1) # CPU seconds elapsed (floating point)
Posted by: Guest on June-16-2020
5

python how to measure code run in time

import time
start_time = time.time()
main()
print("--- %s seconds ---" % (time.time() - start_time))
Posted by: Guest on May-09-2020

Code answers related to "record time of an operation in python"

Python Answers by Framework

Browse Popular Code Answers by Language