Commit 9d823ce1 by BellCodeEditor

save project

parent 7696f6d4
Showing with 10 additions and 0 deletions
......@@ -5,3 +5,13 @@ print("我要出"+player)
list = ["石头","剪刀","布"]
cmputer =random.choice(list)
print("电脑出"+cmputer)
if player == cmputer:
print("平局!")
elif (player == "布" and cmputer == "石头") or (player == "石头" and cmputer == "剪刀") or (player == "剪刀" and cmputer == "布"):
print("玩家胜利!")
else:
print("电脑胜利!")
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