how calculate time in python

34

how calculate time in python -

import time
start = time.process_time()
# your code here    
print(time.process_time() - start)

Comments

Submit
0 Comments