datettime python code example
Example 1: 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 2: 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')