Commit f7b81b6e by BellCodeEditor

auto save

parent b28284b9
Showing with 2 additions and 11 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