я вот просто хотел вспомнить как делать ботов в питончике, столкнулся с проблемой, что мне надо в строке
if message.text == "Привет":
сделать так, чтобы воспринималась со строчной буквы, т,е как "привет"
вот полный код
import randomAlice
import random
import telebot
bot = telebot.TeleBot("скрыто")
@bot.message_handler(content_types=['text', 'audio'])
def start(message):
if message.text == "Привет":
bot.send_message(message.chat.id, random.choice(randomAlice.hello))
bot.polling(none_stop=True, interval=0)