I am a beginner. I tried running this on Jupyter Notebook.
x = 5
y = dt.date.today() + dt.timedelta(days = x)
print(y)
x = 1000
print(y)
and the result was
2020-08-01
2020-08-01
I don't understand why if x changes from 5 to 1000 days, y won't change either. Does the timedelta save the 5 input? Am I missing something with these parameters?