По таком принципу созданы кнопки
@bot.message_handler(content_types=['text'])
def handle_buttons(message):
if message.text == 'Компьютер':
# Выводим сообщение при старте бота и кнопки управления
keyboard_comp = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True)
keyboard_comp.add(telebot.types.KeyboardButton('Аппаратная часть'), telebot.types.KeyboardButton('Програмная часть'))
keyboard_comp.add(telebot.types.KeyboardButton('Административная часть'), telebot.types.KeyboardButton('Назад'))
bot.send_message(message.chat.id, "Выбрано: Компьютер", reply_markup=keyboard_comp)
elif message.text == 'Аппаратная часть':
# Выводим сообщение при старте бота и кнопки управления Wi-Fi
keyboard_comp_hardware = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True)\
.add(telebot.types.KeyboardButton('Wi-Fi'), telebot.types.KeyboardButton('Ethernet'))\
.add(telebot.types.KeyboardButton('Кнопка 3.2'), telebot.types.KeyboardButton('Назад'))
bot.send_message(message.chat.id, "Выбрано: Аппаратная часть", reply_markup=keyboard_comp_hardware)
elif message.text == 'Програмная часть':
# Выводим сообщение при старте бота и кнопки управления Wi-Fi
keyboard_comp_software = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True)\
.add(telebot.types.KeyboardButton('WSL'), telebot.types.KeyboardButton('QBittorrent'))\
.add(telebot.types.KeyboardButton('QUIK'), telebot.types.KeyboardButton('Назад'))
bot.send_message(message.chat.id, "Выбрано: Програмная часть", reply_markup=keyboard_comp_software)
elif message.text == 'Административная часть':
# Выводим сообщение при старте бота и кнопки управления Wi-Fi
keyboard_comp_admin = telebot.types.ReplyKeyboardMarkup(resize_keyboard=True)\
.add(telebot.types.KeyboardButton('Выйти из сеанса'), telebot.types.KeyboardButton('Перезагрузить'))\
.add(telebot.types.KeyboardButton('Кнопка 3.3'), telebot.types.KeyboardButton('Назад'))
bot.send_message(message.chat.id, "Выбрано: Административная часть", reply_markup=keyboard_comp_admin)
telebot.types.KeyboardButton('Назад'))
Вопрос в следующем, как сделать кнопку Назад, чтобы она имела название Назад, а сообщение отправлялось, например, Компьютер.