def list_creation(message):
My_List= str('\n'.join(My_List))
@bot.callback_query_handler(func=lambda call: True)
def callback_inline(call, My_List):
if call.data == "list":
bot.send_message(call.chat.id, My_List)
def button(message):
markup = types.InlineKeyboardMarkup()
button = types.InlineKeyboardButton(text="Get_List", callback_data="list")
markup.add(button)
bot.send_message(chat_id=message.chat.id, text="Какой cписок Вас интересует?", reply_markup=markup)