datetime.date to datetime.datetime code example
Example 1: python timedelta
from datetime import timedelta
tomorrow = datetime.today() + timedelta(days = 1)
Example 2: python datetime to string iso format
from datetime import datetime
some_date = datetime.now()
iso_date_string = some_date.isoformat()
iso_date_string = some_date.strftime('%Y-%m-%dT%H:%M:%S.%f%z')
Example 3: datetime year python
import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
Example 4: date library python strftime
from datetime import datetime
now = datetime.now()
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)