Answers for "how to define time in python"

7

time it python

import time

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

python time method

from time import sleep, time

start = time()
sleep(2)
print(format(time() - start, '.3f'), 's', sep='') # 2.003s
Posted by: Guest on March-11-2021
1

time in python code

import datetime

x = datetime.datetime.now()

print(x)
Posted by: Guest on April-04-2021

Code answers related to "how to define time in python"

Python Answers by Framework

Browse Popular Code Answers by Language