Answers for "timer class in python"

5

python timer

import time					
tic = time.perf_counter() # Start Time
your_program() 			  # Your code here
toc = time.perf_counter() # End Time
# Print the Difference Minutes and Seconds
print(f"Build finished in {(toc - tic)/60:0.0f} minutes {(toc - tic)%60:0.0f} seconds")
# For additional Precision
print(f"Build finished in {toc - tic:0.4f} seconds")
Posted by: Guest on July-22-2021
0

python timer()

def hello():
    print "hello, world"

t = Timer(30.0, hello)
t.start() # after 30 seconds, "hello, world" will be printed
Posted by: Guest on November-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language