how can create a dynamic keyboard?
i created the buttons dynamically, but now i don't understand how to create the actual keyboard
i want to generate this code dynamically
keyboard_EXAMPLE = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton(text = button_1, callback_data = 'NUOVO_1')],
[InlineKeyboardButton(text = button_2, callback_data = 'NUOVO_2')],
[InlineKeyboardButton(text = button_3, callback_data = 'NUOVO_3')],
[InlineKeyboardButton(text = button_4, callback_data = 'NUOVO_4')],
[InlineKeyboardButton(text = button_5, callback_data = 'NUOVO_5')],
[InlineKeyboardButton(text = button_6, callback_data = 'NUOVO_6')],
])