create datetime python code example

Example 1: datetime python

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

Example 2: 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 3: how to set datetime format in python

import datetime

x = datetime.datetime(2018, 9, 15)

print(x.strftime("%b %d %Y %H:%M:%S"))

Example 4: python create date

import datetime

x = datetime.datetime(2020, 5, 17)
print(x) 
# 2020-05-17 00:00:00