python入門筆記 猜拳小遊戲

2021-10-24 11:55:58 字數 945 閱讀 4555

python入門筆記——猜拳小遊戲

import random

a=''

b=''

computer = random.randint(0,

2)person=

int(

input

('請出拳[0:拳頭,1:剪刀,2:布]:'))

if computer==0:

a='拳頭'

pass

elif computer==1:

a='剪刀'

pass

elif computer==2:

a='布'pass

if person==0:

b='拳頭'

pass

elif person==1:

b='剪刀'

pass

elif person==2:

b='布'pass

print

('電腦出的是:{},你出的是:{}'

.format

(a,b)

)if person==

0and computer==1:

print

('恭喜你,你贏了!'

)pass

elif person==

1and computer==2:

print

('恭喜你,你贏了!'

)pass

elif person==

2and computer==0:

print

('恭喜你,你贏了!'

)pass

elif person==computer:

print

('打平了哦'

)pass

else

:print

('你被電腦贏了哦'

)

Python入門猜拳小遊戲

根據隨機函式來動態比拼,簡單易玩 開始 coding utf 8 import math import time 在這裡插入 片 import random def gamestart print 這是乙個簡單的剪刀石頭布遊戲 com random.randint 1,3 print ok,game...

猜拳小遊戲(python)

import random 載入模組random 隨機數 win 0 定義勝場 lose 0 定義敗場 dogfall 0 定義平局 while true while 迴圈 print 10 猜拳遊戲 10 遊戲開頭輸出 遊戲名 print 勝 s,敗 s,平 s win,lose,dogfall ...

python小遊戲(猜拳)

usr bin python import random choices 石頭 剪刀 布 computer random.choice choices 生成乙個隨機值 print 猜拳遊戲開始.print 請輸入數字 print 1.石頭 2.剪刀 3.布 while true guess num ...