python3 timedelta code example
Example 1: python datetime now
import datetime
print(datetime.datetime.now()) #datetime.datetime.now() is the syntax
Example 2: python timedelta
from datetime import timedelta
tomorrow = datetime.today() + timedelta(days = 1)