Commit 45739e2e by BellCodeEditor

save project

parent a08f90f7
Showing with 8 additions and 5 deletions
...@@ -4,11 +4,14 @@ player=input("石头/剪刀/布:") ...@@ -4,11 +4,14 @@ player=input("石头/剪刀/布:")
print("玩家出拳:"+player) print("玩家出拳:"+player)
compotr=random.choice(list) compotr=random.choice(list)
print("计算机出拳:"+compotr) print("计算机出拳:"+compotr)
if player==compotr: if player in list:
print("平局") if player==compotr:
elif player=="石头" and compotr=="剪刀" or player=="布" and compotr=="石头" or player=="剪刀" and compotr=="布": print("平局")
print("玩家胜利") elif player=="石头" and compotr=="剪刀" or player=="布" and compotr=="石头" or player=="剪刀" and compotr=="布":
print("玩家胜利")
else:
print("你输了")
else: else:
print("你输了") 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