Answers for "how is date time stored in python"

1

how to print date and time in python

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