net
This commit is contained in:
parent
2e25a67322
commit
8142dfbbb3
3
main.py
3
main.py
@ -11,6 +11,7 @@ bot = telebot.TeleBot(os.getenv("TELEGRAM_TOKEN"))
|
||||
all_letters = "йцукенгшщзхъёфывапролджэячсмитьбюЙЦУКЕНГШЩЗХЪЁФЫВАПРОЛДЖЭЯЧСМИТЬБЮQWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm "
|
||||
answers_rus = {"да", "дa"}
|
||||
answers_eng = {"da", "dа"}
|
||||
answers_net = {"нет"}
|
||||
|
||||
|
||||
@bot.message_handler()
|
||||
@ -24,6 +25,8 @@ def do_action(message: Message):
|
||||
bot.reply_to(message, "Пизда!")
|
||||
if convert_text in answers_eng:
|
||||
bot.reply_to(message, "Pizda!")
|
||||
if convert_text in answers_net:
|
||||
bot.reply_to(message, "Пидора ответ!")
|
||||
|
||||
|
||||
bot.polling()
|
||||
|
Loading…
Reference in New Issue
Block a user