Answers for "how to import real time into python"

7

print time python

from datetime import datetime

now = datetime.now().time() # time object

print("now =", now)
print("type(now) =", type(now))
Posted by: Guest on March-22-2020
1

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