I have the following code that should end when my number is no longer a certain tuple, such as (1,0) or (2,0). But when I run my code it runs infinitely or not at all cant figure out the problem.
import random
START = (random.randrange(0, 4), random.randrange(0, 4))
print(START)
while START==(1, 0) or (2, 0) or (1, 1) or (3, 2):
START = (random.randrange(0, 4), random.randrange(0, 4))
else:
print(START)