Answers for "how to get time used by a function python"

16

python time a funciton

import time

start = time.time()
print("hello")
end = time.time()
print(end - start)
Posted by: Guest on December-08-2020
0

get time python

from datetime import datetime

date = datetime.now()
print(date)
# Prints in the format: year, month, day, hour, minute, second and microsecond
Posted by: Guest on February-15-2021

Code answers related to "how to get time used by a function python"

Python Answers by Framework

Browse Popular Code Answers by Language