I'm making a program in python, which has an input that only asks for the number one or the number 2, but I want to check if the response of the input is only in these two numbers, I'm using the not in operator, but it's not working, because I want to check while the input is not at one or number two, it will ask again, code dowm
while testamento not in "1" or not in "2":
testamento = input("Digite denovo: ")```
what can i do to check the two numbers?