I have this code:
choose = ""
while choose != "x" or choose != "X" or choose != "o" or choose != "O":
choose = input("X or O? -> ")
but it continues even if the user insert x, X, o or O.
I am new at coding, anyone have an idea to make it work?