I am trying to create an if statement that checks whether certain combinations of unordered values are in my appended list.
if ("1" and "2" and "3") or ("1" and "4" and "7") in player1_inputs:
print("Correct")
else:
print("Incorrect")
No matter what set of numbers I put in the player1_inputs, I always get "Correct". Could anyone explain why this is the case?