Answers for "how to get time in s python"

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
0

get time python

from datetime import datetime

date = datetime.now()
print(date)
# Prints in the format: year, month, day, hour, minute, second and microsecond
Posted by: Guest on February-15-2021

Code answers related to "how to get time in s python"

Python Answers by Framework

Browse Popular Code Answers by Language