Crear un bot para Telegram que tenga la capacidad de realizar operaciones matemáticas Basicas de manera profesional
import telebot token = "token" tb = telebot.TeleBot(token) @tb.message_handler(commands=['start', 'help']) def send_welcome(message): tb.reply_to(message, "Howdy, how are you doing?") @tb.message_handler(func=lambda message: True) def echo_all(message): tb.reply_to(message, message.text) tb.polling()