Как увеличить дату на один в Python

date = datetime(2020, 2, 20)
date += timedelta(days=1)

print(date)
Angry Albatross