Commit 94db9833 by BellCodeEditor

save project

parent 25abb509
Showing with 20 additions and 3 deletions
player=input("请出拳:石头/剪刀/布")# 玩家出拳
print("玩家出拳:"+player)
\ No newline at end of file
player=input#输入("请出拳:石头/剪刀/布。")# 玩家出拳
print#打印("玩家出拳:"+player)
import random#导入 随即模块
tf=["石头","剪刀","布"]
c=random.choice(tf)#随机抽取
print("计算机出拳:"+c)
if player in tf:
if player==c:
print("平局")
elif player=="石头" and c=="剪刀":
print("恭喜你你赢啦")
elif player=="剪刀" and c=="布":
print("恭喜你你赢啦")
elif player=="布" and c=="石头":
print("恭喜你你赢啦")
else:#否则
print("你输啦")
else:
print("错误")
\ No newline at end of file
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