def get_pic(update, context):
photo = update.message.photo[-1]
update.message.reply_photo(photo=photo, reply_markup=full_keyboard())
answers = ["A", "B", "C"]
elif data == "7":
for answer in answers:
keys.append(InlineKeyboardButton(text=answer, callback_data=answer))
print(answers)
markup = InlineKeyboardMarkup([keys], resize_keyboard=True)
query.message.reply_text("Ваш вопрос:\n" + text_question[0], reply_markup=markup)
@bot.callback_query_handler(lambda first: first.data=="first")
def call_opros(first):
if first.data == "first":
bot.send_message(first.message.chat.id, text="Введите свой вопрос")