Commit 57797479 by BellCodeEditor

save project

parent 5a1fde3e
Showing with 9 additions and 2 deletions
...@@ -3,4 +3,11 @@ print("玩家出"+player) ...@@ -3,4 +3,11 @@ print("玩家出"+player)
list=["石头","剪刀","布"] list=["石头","剪刀","布"]
import random import random
compuer = random.choice(list) compuer = random.choice(list)
print("电脑出"+compuer) print("电脑出"+compuer)
\ No newline at end of file if player == compuer:
print("平局\n")
elif player == "布"and compuer == "石头" or player == "剪刀" \
and computer == "布"or player == "石头" and computer == "剪刀":
print("你赢了\n")
else:
print("你输了\n")
\ 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