skip to Main Content

Convert usd and eur in Bot Telegram – Telegram API

I'm studying Python for create a simple Bot for Telegram, but I have a problem. I created 2 files exchange.py and BotHtmlTelegram.py exchange.py: EXCHANGE=1.125 def from_usd_to_eur(usd): return usd/EXCHANGE def from_eur_to_usd(eur): return EXCHANGE*eur and this BotHtmlTelegram.py: from telegram.ext import Updater, CommandHandler,…

VIEW QUESTION
Back To Top
Search