I have some code that I want to ask the user for a number between 1-100 and if they put a number between these it will print (Size: (input)) and break the loop, if however, they put in a number outside 1-100 it will print (Size: (input)), and proceed to re-ask them for a number, I have run into some problems though.
c=100
while c<100:
c=input("Size: ")
if c == 1 or 2 or 3:
print ("Size: "+c)
break
else:
print ("Size: "+c)
print ("Invalid input. Try again.")