summaryrefslogtreecommitdiffstats
path: root/random/invalid input.py
blob: 9f7d48770c0a1d04f35955dc6b61fcefb61472cf (plain)
1
2
3
4
5
6
7
8
9
10
def get_input():
    while True:
        year = input() #string
        try:
            year = int(year) # turn into int
            return year
        except:
            print("You entered a letter!")

get_input()