Commit 2b4db33d by BellCodeEditor

save project

parent 220fe62b
Showing with 21 additions and 0 deletions
player = input("请玩家出石头/剪刀/布/)
print("请玩家出"+player)
import random
list=["石头","剪刀","",]
computer=random.choice(list)
print(computer)
if player == computer:
print("啊,默契很足呢,前辈")
elif player=="剪刀"and computer=="":
print("啊啊啊,不要拿走我的肾脏,求求你,放过我吧")
elif player=="石头"and computer=="剪刀":
print("我的赌注,太重了")
elif player==""and computer=="石头":
print("还是不及前辈啊")
else:
print("我想收藏前辈的指甲")
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