@bot.message_handler ( message = "Создать Заказ" ) def zakaz ( message ) : markup = types . InlineKeyboardMarkup ( ) one = types . InlineKeyboardButton ( "первая услуга" , callback_data = "one" ) two = types . InlineKeyboardButton ( "вторая услуга" , callback_data = "two" ) three = types . InlineKeyboardButton ( "третья услуга" , callback_data = "thee" ) four = types . InlineKeyboardButton ( "четвёртая услуга" , callback_data = "four" ) five = types . InlineKeyboardButton ( "пятая услуга" , callback_data = "five" ) markup . row ( one , two , three , four , five ) bot . send_message ( message . chat . id , "Выберите нужную вам услугу" ) bot . infinity_polling ( )