Commit 4f883847 by BellCodeEditor

save project

parent f53ae764
Showing with 18 additions and 3 deletions
player=input("请出拳:(石头/剪刀/布)")# 玩家出拳
print("玩家出拳"+player)
\ No newline at end of file
import random
print("输入正确")
a=input("请出拳:(石头/剪刀/布)")# 玩家出拳
print("玩家出拳"+a)
while True:
if a in c:
c=["剪刀","石头","布"]
b=random.choice(c)
print("计算机出,"+b)
if a==b:
print("平局")
elif (a=="剪刀" and b=="布") or (a=="石头" and b=="剪刀") or (a=="布" and b=="石头"):
print("玩家赢")
else :
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