Commit bd631cb3 by BellCodeEditor

save project

parent 7b81a323
Showing with 9 additions and 0 deletions
...@@ -5,3 +5,11 @@ import random ...@@ -5,3 +5,11 @@ import random
list=["石头","剪刀","布"] list=["石头","剪刀","布"]
compuer=random.choice(list) compuer=random.choice(list)
print(computer) print(computer)
if piay==compuer:
print("平局")
elif play=="石头"and compuer=="剪刀":
print("玩家嬴了")
elif play=="布"and compuer=="石头":
print("玩家嬴了")
elif play=="剪刀"and compuer=="布":
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