import telebot from telebot import types #токен бота token = "токен сюда" bot = telebot . TeleBot ( token ) @bot.message_handler ( commands = [ "start" ] ) def start ( message ) : markup = types . ReplyKeyboardMarkup ( ) knopkaOne = types . KeyboardButton ( "первая кнопка" ) knopkaTwo = types . KeyboardButton ( "вторая кнопка" ) knopkaThree = types . KeyboardButton ( "третья кнопка" ) markup . row ( knopkaOne , knopkaTwo , ) markup . row ( knopkaThree ) bot . send_message ( message . chat . id , "Приветствие" , reply_markup = markup )