Answers for "python how to measure the time"

12

python measure time

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)
Posted by: Guest on March-24-2020
2

how calculate time in python

import time
start = time.process_time()
# your code here    
print(time.process_time() - start)
Posted by: Guest on June-03-2020

Python Answers by Framework

Browse Popular Code Answers by Language