Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
def button_usd_handler(update: Update, context: CallbackContext): course = convert(amount=1, to=['RUB']) update.message.reply_text( text=f'1 USD to RUB {course}' )
def button_usd_handler(update: Update, context: CallbackContext): course = convert(amount=1, to=['RUB']) update.message.reply_text( text=f'1 USD to RUB {course.values()}' )