Commit 989f68b0 by BellCodeEditor

save project

parent 220fe62b
Showing with 13 additions and 0 deletions
player = input("请出石头/剪刀/布:")
print("完家出:"+player)
import random
list= ["剪刀","布","石头"]
sjb=random.choice(list)
print("机器人出:"+sjb)
if player==sjb:
print(平局)
elif player=="石头" and sjb=="剪刀" or player=="剪刀" and sjb=="布" or player=="布" and sjb=="石头":
print(你赢了)
elif player=="石头" and sjb=="布" or player=="剪刀" and sjb=="石头" or player=="布" and sjb=="剪刀":
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