User Tools

Site Tools


datetime_format

Datetime Format

from datetime import datetime
 
now = datetime.now() # current date and time
 
year = now.strftime("%Y")
print("year:", year)
 
month = now.strftime("%m")
print("month:", month)
 
day = now.strftime("%d")
print("day:", day)
 
time = now.strftime("%H:%M:%S")
print("time:", time)
 
date_time = now.strftime("%m/%d/%Y %H:%M:%S")
print("date and time:",date_time)
 
italian_date_time = now.strftime("%d/%m/%Y %H:%M:%S")
print("date and time:", italian_date_time)       
 
mysql_date_time = now.strftime("%Y-%m-%d %H:%M:%S")
print("date and time:", mysql_date_time)
datetime_format.txt · Last modified: by gabriele