import telebot
import random
bot = telebot.TeleBot('1')
@bot.message_handler()
def rand(message):
if message.text.lower() == "рандом":
bot.send_message(message.chat.id, f"Число: {random.randint(1, 100)}")
else:
bot.send_message(message.chat.id, "Эхо")
bot.polling(none_stop=True)