Commit dc2133bb by BellCodeEditor

save project

parent b611d175
Showing with 9 additions and 2 deletions
import random
i=input("请出拳(石头\剪刀\布)")
print("玩家出:"+i)
p=input("请出拳(石头\剪刀\布)")
print("玩家出:"+p)
list=["石头","剪刀","布"]
c=random.choice(list)
print("电脑出:"+c)
if p==c:
print()
elif (p=="石头"and c=="剪刀") or (p=="剪刀"and c =='布') or (p=="布" and c=="石头"):
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