Commit 845fa7a4 by BellCodeEditor

save project

parent b5c6bbbe
Showing with 28 additions and 0 deletions
import random
a=0;
for i in range(10):
w=input("请出拳(剪刀/石头/布)")
print("玩家出拳:"+w)
list1=["石头","剪刀","布"]
c=random.choice(list1)
print("计算机出拳"+c)
if w in list1:
if(w==c):
print("平局")
a=a
elif(w=="石头"and c=="剪刀") or (w=="剪刀" and c=="布") or (w=="布" and c=="石头"):
print("你赢了")
a=a+1
else:
print("你输了")
a=a-1
else:
print("输入错误")
if a>0:
print("总分大于计算机!胜利!")
elif a==0:
print("最后还是平局了呜呜呜")
else:
print("输了。。。输了。。。")
print(a)
\ 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