I need to create a day variable which will store the current date, and I need another variable which will store the deadline(day + 1 month), but I seem to be doing something wrong.
import datetime
day = datetime.date.today()
deadline = datetime.date.today()
deadline.month += 1
print(day)
print(deadline)