您好,登錄后才能下訂單哦!
叮:頁面顯示有問題,參考代碼注意縮進
import random
#根據輸入參數顯示對應結果
while True:
#獲取輸入參數
play = int(input("請輸入您得動作(0剪刀 1石頭 2布 或退出程序 3):"))
#電腦隨機動作動作
computer = random.randint(0, 2)
if (play ==0 and computer ==2) or (play == 1 and computer ==0) or(play == 2 and computer == 1) :
print("你贏了,混蛋")
elif play == computer:
print("平局")
elif play == 3:
break
else:
print("輸光了,改天再來吧")
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。