python datetime iso code example

Example 1: python date and time

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


Output: 2020-06-19 10:34:45

Example 2: python datetime now

import datetime
print(datetime.datetime.now()) #datetime.datetime.now() is the syntax

Example 3: python datetime to string iso format

from datetime import datetime
some_date = datetime.now()
iso_date_string = some_date.isoformat()

# For older version of python 
iso_date_string = some_date.strftime('%Y-%m-%dT%H:%M:%S.%f%z')

Example 4: date library python 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)