Python strftime()
Example 1: datetime to string using strftime()
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) How strftime() works?
Example 2: Creating string from a timestamp
Format Code List
Example 3: Locale's appropriate date and time
Last updated



