Commit 372127d5 by BellCodeEditor

save project

parent b7ecd61c
Showing with 14 additions and 6 deletions
# 玩家 # 玩家
import random import random
w=input("爱子出拳") while True:
print("爱子出拳"+w) w=input("爱子出拳")
list=["剪刀","石头","布"] print("爱子出拳"+w)
c=random.choice(list) list=["剪刀","石头","布"]
print("老子出拳"+c) c=random.choice(list)
\ No newline at end of file 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