Crear un bot para Telegram que tenga la capacidad de realizar operaciones matemáticas Basicas de manera profesional
from telegram.ext import CommandHandler def start(bot, update): update.message.reply_text('Hello World!') start_handler = CommandHandler('start', start) dispatcher.add_handler(start_handler) updater.start_polling()