skip to Main Content

lamda funtion in @bot.message_handler() not working properly in telebot python – Telegram API

I tried to implement the following line of code in python script for a telegram bot building using telebot. @bot.message_handler(func=lambda msg:True if msg.text.startswith('/test')) def test_start(message): msg=bot.send_message(message.chat.id,'This feature is under developement') Above code gives me a syntax error. @bot.message_handler(func=lambda msg:True if…

VIEW QUESTION
Back To Top
Search