Answers for "how to get the time with datetime python"

1

python get date and 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

Code answers related to "how to get the time with datetime python"

Python Answers by Framework

Browse Popular Code Answers by Language