When I run this code, even if enter '1' or '2' or '3', my code still runs through the while loop. How do I change my code so that it will only run through the while loop if the user DOESN'T enter '1', '2' or '3'? Thank you very much!
column=input("What column is your card in? Please enter either '1', '2' or '3':")
while column != "1" or "2" or "3":
print("That is an invalid choice. You must enter either '1' or '2' or '3'")
column=input("What column is your card in? Please enter either '1', '2' or '3':")
print(column)