Sebastián

Generation

generate functionThu, 13 Jul 2023

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()

Want to kickstart your project?Use the new AI Studio to create your code