猜 拳遊戲,三局兩勝 python

2021-08-23 14:31:14 字數 861 閱讀 9043

import random

all_choices = [『石頭』, 『剪刀』, 『布』]

win_list = [[『石頭』, 『剪刀』],[『剪刀』, 『布』],[『布』, 『石頭』]]

prompt = 」』

(0) 石頭

(1) 剪刀

(2) 布

請選擇0/1/2:

」』 x = 0

y = 0

i = 1

while i <= 3:

ind = int(input(prompt))

player = all_choices[ind]

computer = random.choice(all_choices)

print(「你出了: %s, 計算機出了: %s」 % (player, computer))

if player == computer:

print(「平」)

elif [player, computer] in win_list:

print(「贏了」)

x += 1

else:

print(「輸了」)

y +=1

i += 1

print(『遊戲結束』)

if x > y:

print(「\033[34;1m你贏了\033[0m」)

elif x < y:

print(「\033[31;1m你輸了\033[0m」)

else:

print(「\033[32;1m平局\033[0m」)

print(『你贏了: %s次, 你輸了: %s次』 % (x, y))

python實現簡單的猜拳遊戲三局兩勝制

import random choicelist 石頭 剪刀 布 winlist 石頭剪刀 剪刀布 布石頭 playcnt 0 回合數 q 0 玩家比分 w 0 電腦比分 while playcnt 3 aichoice random.choice 石頭 剪刀 布 b int input 輸入0.石...

Python 石頭剪刀布小遊戲(三局兩勝)

import random all choioces 石頭 剪刀 布 win list 石頭 剪刀 剪刀 布 布 石頭 poeple on true poeple add 0 compute add 0 while poeple on compute random.choice all choioc...

python石頭剪刀布小遊戲(三局兩勝制)

python 石頭剪刀布小遊戲 三局兩勝 供大家參考,具體內容如下 import random all choioces 石頭 剪刀 布 win list 石頭 剪刀 剪刀 布 布 石頭 poeple on true poewww.cppcns.comple add 0 compute add 0 ...