Z
Size: a a a
Z
Z
V
Л
A
К
Н
Н
༼[
༼[
AB
AB
markup = ReplyKeyboardMarkup(resize_keyboard=True)
button1 = KeyboardButton('Регистрация новой заявки')
button2 = KeyboardButton('Показать список открытых заявок')
button3 = KeyboardButton('Показать список закрытых заявок')
button4 = KeyboardButton('Напомнить логин и пароль')
await bot.send_message(message.from_user.id, 'Спасибо за отзыв!', reply_markup=markup)
AB
markup = ReplyKeyboardMarkup(resize_keyboard=True, row_width=3)старая клавиатура
buttons = [
KeyboardButton('1'),
KeyboardButton('2'),
KeyboardButton('3'),
KeyboardButton('4'),
KeyboardButton('5'),
KeyboardButton('6'),
KeyboardButton('7'),
KeyboardButton('8'),
KeyboardButton('9'),
KeyboardButton('👎'),
KeyboardButton('10'),
KeyboardButton('👍')
]
for button in buttons:
markup.insert(button)
await bot.send_message(message.from_user.id, 'Оцените работу Специалиста от 1 до 10, где 10 наивысший бал.', reply_markup=markup)
༼[
AB
AB
AB
Л