Commit 2dfbb756 by BellCodeEditor

auto save

parent 8127189a
Showing with 10 additions and 0 deletions
......@@ -2,3 +2,12 @@ import random
# 玩家出拳
player = input("请玩家出拳(剪刀\石头\布):")
print("玩家出拳是:" + player)
list= ["剪刀", "石头", "布"]
cpu = random.choice(list)
print("电脑出拳是:"+ cpu)
if player == cpu:
print("平局")
elif (player == "剪刀" and cpu =="布") or (player == "石头" and cpu =="剪刀") or (player == "布" and cpu =="石头"):
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