Commit 372127d5 by BellCodeEditor

save project

parent b7ecd61c
Showing with 14 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