print('enter your age')
age = input()
print('this is how many days you have been alive')
time.sleep(1)
print('input the first three letters of the month you were born')
jan = 31
feb = 59
mar = 90
apr = 120
may = 151
jun = 181
jul = 212
aug = 243
sep = 273
oct = 304
nov = 334
dec = 365
month = input()
print('now for the day you were born. put this in number form without any "th"s or "nd"s ')
date = input()
print('your total age is:')
time.sleep(1)
print((int(age) * 365) + int(date) + int(month))
the error i get is ValueError: invalid literal for int() for month
I'm a beginner so if you want me to provide more detail let me know, but i believe this is an obvious fix that i just havent thought of yet
when i try removing the int() it gives another error, something like "expected int, got str instead