Вот сам код
import telebot
import config
bot = telebot.TeleBot(config.CALC_BOT_TOKEN)
CALC_BOT_TOKEN = '5873275067:AAFYX-lQlBqGVgmTLXYuTrIbPDnB0nLC0zY'
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(message.chat.id, 'CoreIeX Calculator!!!')
pass
@bot.message_handler(content_types=['text'])
def calc(message):
try:
bot.send_message(message.chat.id, eval(message.text))
pass
except:
bot.send_message(message.chat.id, f'Not this:{message.text}!!!')
bot.send_message(message.chat.id, '(2+2*2)')
pass
pass
bot.polling()
-
Вопрос задан
-
144 просмотра