import random x = int(raw_input("Number(1-6): ")) # note I made x an int while True: y = random.randint(1, 6) if x != y: break