s = input("Are we there yet?")

while s != "yes":
    # note - infinite loop, we didn't save the answer into s
    input("Are we there yet?")