Answers for "python timer object example"

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
2

python timer

import time
start = time.time()
# do something
duration = time.time() - start
Posted by: Guest on March-29-2021

Python Answers by Framework

Browse Popular Code Answers by Language