Commit 8dd80298 by BellCodeEditor

save project

parent 03262e08
Showing with 11 additions and 8 deletions
...@@ -2,11 +2,14 @@ import random ...@@ -2,11 +2,14 @@ import random
list = ["石头","剪刀","布"] list = ["石头","剪刀","布"]
player = input("你要出什么:") player = input("你要出什么:")
print("玩家出"+player) print("玩家出"+player)
robot = random.choice(list) if player in list:
print("电脑出"+robot) robot = random.choice(list)
if player==robot: print("电脑出"+robot)
print("平局") if player==robot:
elif (player == "石头" and robot == "剪刀")or(player == "剪刀" and robot == "布")or(player == "布" and robot == "石头"): print("平局")
print("玩家胜利") elif (player == "石头" and robot == "剪刀")or(player == "剪刀" and robot == "布")or(player == "布" and robot == "石头"):
print("玩家胜利")
else:
print("电脑胜利")
else: else:
print("电脑胜利") print("你个肮脏的作弊者")
\ No newline at end of file \ 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