I am trying to create a python program but i have a question about a certain part of the loop for example i have
question = input("press 1 or 2")
if statement == 1:
print "somthing"
elif statement == 2:
print "abc"
ok my question now is for example the user were to press 10, python would just skip the whole if loop, how can i make the message reappear and make the user chose the correct options?