簡體   English   中英

在游戲中循環時重新啟動

[英]restarting while loop in a game

我正在嘗試用python編寫剪刀石頭布的游戲,這是代碼:

D_0 = {1: "rock", 2: "scissors", 3: "paper"}
from random import randint
play = False
name = input("What is your name?: ")
print("%s you have to pick among rock,paper and scissors." % name)

while play == False:
    p_1 = input("which one?")
    computer = D_0[randint(1, 3)]
    print("my choice is: ",computer)
    if p_1 == computer:
        print("it's a draw")
    elif p_1 == "scissors" and computer == "paper":
        print("you won!")
    elif p_1 == "paper" and computer == "scissors":
        print("you lost!")
    elif p_1 == "scissors" and computer == "rock":
        print("you lost!")
    elif p_1 == "rock" and computer == "paper":
        print("you lost!")
    elif p_1 == "rock" and computer == "scissors":
        print("you won!")
    elif p_1 == "paper" and computer == "rock":
        print("you won!")
    else:
        print("Invalid input")
    break
again = input("do you want another round?:")
if again == "yes":
    play = False
else:
    play = True

該程序運行良好,但我想問問玩家是否想再進行一輪。如果回答為是,則程序必須重新開始循環。 問題是我不知道該怎么做,我知道它可能與True和False有關,我試圖做一些您可以在代碼中看到的事情,但是沒有用。 請幫我。

一個簡單的修復方法可能是將while循環設為True然后繼續循環直到中斷執行為止:

D_0 = {1: "rock", 2: "scissors", 3: "paper"}
from random import randint

name = input("What is your name?: ")
print("%s you have to pick among rock,paper and scissors." % name)

while True:
    p_1 = input("which one?")
    computer = D_0[randint(1, 3)]

    print("my choice is: ", computer)

    if p_1 == computer:
        print("it's a draw")
    elif p_1 == "scissors" and computer == "paper":
        print("you won!")
    elif p_1 == "paper" and computer == "scissors":
        print("you lost!")
    elif p_1 == "scissors" and computer == "rock":
        print("you lost!")
    elif p_1 == "rock" and computer == "paper":
        print("you lost!")
    elif p_1 == "rock" and computer == "scissors":
        print("you won!")
    elif p_1 == "paper" and computer == "rock":
        print("you won!")
    else:
        print("Invalid input")

    again = input("do you want another round?:")
    if again != "yes":
        break

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM