Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python current date and time

from datetime import datetime

# datetime object containing current date and time
now = datetime.now()
 
print("now =", now)

#Output: now = 2021-06-25 07:58:56.550604

# dd/mm/YY H:M:S
dt_string = now.strftime("%d/%m/%Y %H:%M:%S")
print("date and time =", dt_string)

#Output: date and time = 25/06/2021 07:58:56
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #python #current #date #time
ADD COMMENT
Topic
Name
7+6 =