Answers for "checking time python"

7

python measure time

import time

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

python displaying the time

import datetime
now = datetime.datetime.now()
print ("Current date and time : ")
print (now.strftime("%Y-%m-%d %H:%M:%S"))
Posted by: Guest on March-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language