Commit 23cd15dc by BellCodeEditor

save project

parent 3ce48e28
Showing with 13 additions and 6 deletions
import random
w=input(" 玩家出拳")
print("玩家出拳"+w)
list=["剪刀","石头","布"]
c=random.choice(list)
print("电脑出拳"+c)
\ No newline at end of file
while True:
w=input(" 玩家出拳")
print("玩家出拳"+w)
list=["剪刀","石头","布"]
c=random.choice(list)
print("电脑出拳"+c)
if w==c:
print("平局")
elif (w=="石头" and c=="剪刀") or (w=="剪刀" and c=="布") or (w=="布" 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