Answers for "python how to check amount of time elapsed"

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

Python Answers by Framework

Browse Popular Code Answers by Language