If value is 1-100 it stops program If value <1 or >100 i need to print (try again) and loop back to top. This what i got atm
n1 = 0
n1 = int(input("Enter number between 1-100: "));
print ("your number is: ", n1);
while n1 > 100 or n1 < 0:
print("Try again");