Commit c1672e1e by BellCodeEditor

save project

parent 015dddfc
Showing with 7 additions and 3 deletions
player=input("请出拳:石头/剪刀/布 :")# 玩家出拳 player=input("请出拳:石头/剪刀/布 :")# 玩家出拳
print("玩家出拳:"+player) print("玩家出拳:"+player)
import random import random
list=("石头","剪刀","布") list=("石头","剪刀","布")
c=random.choice(list) c=random.choice(list)
print("电脑出拳:"+c) print("电脑出拳:"+c)
if c==player: if player in list:
if c==player:
print("平局") print("平局")
elif (c=="剪刀" and player=="布") or (c=="石头" and player=="剪刀") or (c=="布" and player=="石头"): elif (c=="剪刀" and player=="布") or (c=="石头" and player=="剪刀") or (c=="布" and player=="石头"):
print("很遗憾,输了") print("很遗憾,输了")
else: else:
print("恭喜你赢了") print("恭喜你赢了")
else:
print("请重新输入")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment