What does this mean in Python:
if x == (1 or 2):
I know it's different to:
if x == 1 or x == 2:
if x in (1,2):