Answers for "python show current date and time"

12

get date and time python

from datetime import datetime
now = datetime.now()
print (now.strftime("%Y-%m-%d %H:%M:%S"))


Output: 2020-06-19 10:34:45
Posted by: Guest on June-19-2020
1

how to get current date and time in python

date_and_time = datetime.now()
print("The today current date and time is:- ",date_and_time)
Posted by: Guest on October-03-2021
0

py current date

from datetime import datetime
datetime.today().strftime('%Y-%m-%d')
'2021-01-26'
Posted by: Guest on July-05-2021

Code answers related to "python show current date and time"

Python Answers by Framework

Browse Popular Code Answers by Language