age = int(input)
while age > 130 or age < 0:
    print('Please print a valid age')
    age = int(input())
I am trying to make sure that the user doesn't type a letter and make my program crash. Also, I am trying to ask for a valid age between 0 and 130. If values are outside, a message should come up saying, not a valid age and should proceed to rewind the while statement by asking the user to prompt in different values for age
 
     
     
     
    