def start(bot, update):
keyboard = [[InlineKeyboardButton("Apples", callback_data='1')],
[InlineKeyboardButton("Oranges", callback_data='2')],
[InlineKeyboardButton("Beans", callback_data='3')],
[InlineKeyboardButton("Rice", callback_data='4')],
[InlineKeyboardButton("Bread", callback_data='5')],
[InlineKeyboardButton("Tomatos", callback_data='6')],
[InlineKeyboardButton("Strawberry", callback_data='7')]
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.message.reply_text('Multiple choice Quizz \nSelect all vegetables:', reply_markup=reply_markup)
InlineKeyboardMarkup を使用して、InlineKeyboardMarkup を非表示にしたり削除したりせずに、ユーザー ボタンの選択に対するフィードバックを提供できる方法はありますか?
たとえば、ユーザーが InlineKeyboardButton を選択すると、次のことができます。
Change the InlineKeyboardButton text
Change the appearance of the InlineKeyboardButton
Edit initial message in update.message.reply_text ( )
多肢選択式の質問を作成できるかどうかを確認しようとしています。そうであれば、ボタンが選択または押されたことをユーザーに知らせる方法を提供する必要があります。