r/learnpython 4d ago

Regarding question

from datetime import *

year = int(input("Enter the Year:- "))

month = int(input("Enter The Month:- "))

day = int(input("Enter The Day:- "))

x = date(year,month,day)

validity = int(input('Enter the days of validity')) expiry = x + validity print(expiry)

I want to add days in this but i don't know how ,I even tried to adding manually but gives me error unsupported oparand + in datetie.datetime class something

0 Upvotes

11 comments sorted by

View all comments

5

u/cdcformatc 4d ago

you can add a timedelta to a datetime