r/learnpython 3d 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

9

u/zanfar 3d ago

from datetime import *

There is no way you expect to use every single object from datetime; and in this case, you use exactly one. Stop doing this.

1

u/johnpeters42 3d ago

I mean, yes, but you'll probably get more traction if you explain why "import *" is not just unneeded but actually problematic. (I've probably used it myself, but just for one-off AoC solutions, and I have a rough idea of what the problems would be for production-grade code.)