石頭剪刀布 python簡單實現

2021-08-21 09:32:35 字數 1091 閱讀 1599

import random

print()

print(" *******歡迎來到猜拳遊戲********")

print(" *******讓我們一局定輸贏********")

print(" ***********遊戲規則************")

print(" *******0-剪刀 1-石頭 2-布******")

print(" ***********開始pk吧************\n")

count1,count2,l=0,0,0

f=0while l<5:

y=int(input(" 請輸入你的數字:"))

if y>2 or y<0:

print(" 輸入錯誤,遊戲結束!\n")

break

r=random.randrange(0,3)

print(" 玩家:",y," 電腦:",r)

c=y-r

if c==-2 or c==1 :

count1+=1

print(" 此局玩家勝!\n")

elif c==0:

print(' 此局為平局!\n')

else:

count2+=1

print(" 此局電腦勝!\n")

if count1==3 and l<=5:

print('\n 玩家先勝三局,玩家勝出!')

f=1break;

if count2==3 and l<=5:

print(' \n 電腦先勝三局,電腦勝出!')

f=1break

l+=1

if f==0:

print('\n 五局結束,',end='')

print('玩家勝了',count1,'局,','電腦勝了',count2,'局','\n 最終結果為:',end='')

if count1>count2:

print(' 玩家勝!')

elif count1==count2:

print(' 平局!')

else:

print(' 電腦勝!')

Python 剪刀石頭布

python 剪刀石頭布 by 鄭瑞國 import random mydict while true 提示獲取玩家的輸入 player int input 請輸入 0剪刀 1石頭 2布 讓電腦隨機出乙個 computer random.randint 0,2 print player mydict...

Python 剪刀石頭布

author cch coding utf 8 time 2020 9 30 10 53 file demo3.py software pycharm 剪刀 0,石頭 1,布 2 使用者輸入數字0 2中的乙個數字,與系統隨機生成的數字比較後,給出結果 import random x random.r...

Python實現石頭剪刀布遊戲

利用隨機函式製作石頭剪刀布小遊戲 程式只執行一次 import random a input 請出拳 石頭 剪刀 布 b 剪刀 石頭 布 定義贏的列表 win list 石頭 剪刀 剪刀 布 布 石頭 計算機隨機選擇出拳 mac random.choice b print 你出拳 a print 計...