You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
here is the code
import telebot
token ='7063597612:AAEXK5vls9PlCOn4fSG7QsNznK...d626mAY'
bot = telebot.TeleBot(token)
@bot.message_handler(commands=['start'])
def say_hi(message):
bot.send_message(message.chat.id, 'Привет')
bot.polling(none_stop=True, interval=0)
an error is coming out: NameError: name 'bot' is not defined
The text was updated successfully, but these errors were encountered:
here is the code
import telebot
token ='7063597612:AAEXK5vls9PlCOn4fSG7QsNznK...d626mAY'
bot = telebot.TeleBot(token)
@bot.message_handler(commands=['start'])
def say_hi(message):
bot.send_message(message.chat.id, 'Привет')
bot.polling(none_stop=True, interval=0)
an error is coming out: NameError: name 'bot' is not defined
The text was updated successfully, but these errors were encountered: