Answers for "time duration in python"

12

python elapsed time

import time

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

python calculate time taken

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

Code answers related to "time duration in python"

Python Answers by Framework

Browse Popular Code Answers by Language