Python迷宫游戏麻烦

Python Maze Game trouble

我正在尝试制作一款游戏,让你穿过迷宫并尝试逃离声音,但每次玩家对其中一个问题说错答案时它会说 "Game Over" 但随后会出现关于它停止的地方,我已经尝试了很多东西并进行了研究,但我似乎无法弄清楚,我只是一个初学者

`

导入时间 导入 os

    print ("Your adventure starts as a young boy, running away from home becuase you're a rebel")
    time.sleep(2)
    print ("You find the famous labyrinth, do you go in?")
    time.sleep(2)
    answer = input("Make your choice, Yes OR No")
    time.sleep(2)
    print ("The answer",answer ,"got you stuck in a hole")
    time.sleep(2)
    print ("But you find a secret passage")
    answer = input("Do you go through the door, Yes or No?")
    if answer == "No":
            time.sleep(2)
            print ("Game Over.")
    elif answer == "Yes":
        time.sleep(2)
        print("You hear a strange voice")
        time.sleep(2)
    answer = input("What do you say to the Voice, Hello or Who are you?")
    if answer == "Hello":
        print ("Hello")
    elif answer == "Who are you?":
        print ("Im your worst nightmare")
    time.sleep(2)
    print("You try and escape the labyrinth and turn a large gate with a gnome on the over end")
    answer = input("Do you open the gate, Yes Or No?")
    if answer == "Yes":
        time.sleep(3)
        print ("Game Over, you get brutally killed by a gnome, good job")
        os._exit(0)
    elif answer == "No":
        time.sleep(3)
        print ("You go the other way and see a light at the end of the tunnel")
    answer = input("You see your family outside crying and waiting for you, do you go with them?")
    if answer == "Yes":
        print("You have a nice ending and you're sorry you ran away")
        print("You have been graded: ")
    elif answer == "No":
        print("God smites you for being stupid.")

        os._exit(0)`

以这个街区为例

print ("But you find a secret passage")
answer = input("Do you go through the door, Yes or No?")
if answer == "No":
        time.sleep(2)
        print ("Game Over.")
elif answer == "Yes":
    time.sleep(2)
    print("You hear a strange voice")
    time.sleep(2)
# continuation

如果用户输入 "No" 它将打印 "Game Over" - 我认为这是正确的。但是,程序中的控制流继续经过 if/else 块。你需要做的是使用 sys.exit() 之类的东西退出程序,或者确保你的控制流只有在应该的情况下才会有前进的路径,即在 if/else 块 [=15] 的真实部分包装接下来发生的事情=]

if answer == "No":
        time.sleep(2)
        print ("Game Over.")
elif answer == "Yes":
    time.sleep(2)
    print("You hear a strange voice")
    time.sleep(2)

    # put continuation here