Commit bd631cb3 by BellCodeEditor

save project

parent 7b81a323
Showing with 10 additions and 2 deletions
...@@ -4,4 +4,12 @@ print("玩家出拳:"+player) ...@@ -4,4 +4,12 @@ print("玩家出拳:"+player)
import random import random
list=["石头","剪刀","布"] list=["石头","剪刀","布"]
compuer=random.choice(list) compuer=random.choice(list)
print(computer) print(computer)
\ No newline at end of file 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