Answers for "python current time and date datetime"

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

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

Python Answers by Framework

Browse Popular Code Answers by Language