import telebot
from telebot import types
import random
from Vocabulary import spisok
from Vocabulary_English import English
bot = telebot.TeleBot('токен')
a = spisok + English
@bot.message_handler(commands=['start'])
def start(message):
markup= types.ReplyKeyboardMarkup()
btn1 = types.KeyboardButton('Русский')
btn2 = types.KeyboardButton('Английський')
markup.add(btn1,btn2)
bot.send_message(message.chat.id,'Привет',reply_markup=markup)
@bot.message_handler(content_types="text")
def knopki(message):
get_message_bot = message.text.strip()
if get_message_bot == 'Русский':
bot.send_message(message.chat.id,random.sample(spisok,k=1,counts=None))
elif get_message_bot == 'Английський':
bot.send_message(message.chat.id,random.sample(English,k=1,counts=None))
else:bot.send_message(message.chat.id,'Попробуй ещё раз')
@bot.message_handler(content_types=["text"])
def proverca(message):
if message.text.lower() in a:
bot.send_message(message.chat.id,'+')
else:bot.send_message(message.chat.id,"-")
bot.polling(none_stop=True)