xxxxxxxxxx
@bot.message_handler(commands=['exchange'])
def exchange_command(message):<br> keyboard = telebot.types.InlineKeyboardMarkup()
keyboard.row(
telebot.types.InlineKeyboardButton('USD', callback_data='get-USD')
)
keyboard.row(
telebot.types.InlineKeyboardButton('EUR', callback_data='get-EUR'),
telebot.types.InlineKeyboardButton('RUR', callback_data='get-RUR')
)
bot.send_message(message.chat.id, ‘Click on the currency of choice:', reply_markup=keyboard)