summaryrefslogtreecommitdiff
path: root/misc/validateInput.py
blob: 36c4f0d8dd30675016f1cde8a4e0b430d5e215ed (plain)
1
2
3
4
5
6
7
8
9
# Validate input

while True:
    print('Enter your age:')
    age = input()
    if age.isdecimal():
        break
    print('Pleas enter a number for your age.')