def echo(bot, update):
global max_
if update.message.from_user.username == "andremesquita96":
user_message = update.message.text
if randint(1, max_) == 3:
if '?' in user_message:
bot.sendMessage(update.message.chat_id, text='{}, {}'.format(
'Responde', choice(automatic_swearwords)))
else:
bot.sendMessage(update.message.chat_id, text='{}, {}'.format(
user_message, choice(automatic_swearwords)))
if max_ < 6:
max_ += 1
else:
max_ = 3
评论列表
文章目录