diy1.py
474 Bytes
player=input("请出你的***:大便/尿/粪:")# 玩家出拳
print("玩家出拳:"+player)
import random
list=['大便','尿','粪']
computer=random.choice(list)
print("计算机出拳:"+computer)
if computer==player:
print("滚蛋,你他妈平局了")
elif (computer=="大便"and player=="尿")or(computer=="粪"and player=="尿")or(computer=="尿"and player=="大便"):
print("操,妈的让你赢了")
else:
print("傻逼,他妈输了吧")