I used:
day = int(input('Please input the day you were born: e.g 8th=8 21st = 21 : '))
month = int(input('Please input the month you were born: e.g may = 5 december = 12 : '))
year = int(input('Please input the year you were born: e.g 2001 / 1961 : '))
if day == int and month == int and year == int:
But it always even when it's an integer says it's wrong.
type(day) is intetc.isinstance.int(, your type checking becomes useless, because there are only two possibilities: 1) day, month, and year are all integers; or 2) your program crashed with aValueErrorwithin the first 3 lines and theifwill never run.