userid = message.chat.id
bot.send_message(message.chat.id, "Ваш id " + userid + "текст")
Ошибка - TypeError: can only concatenate str (not "int") to str
bot.send_message(message.chat.id, "Ваш id " + str(userid) + "текст")
Но чёт тоже не очень получилось... bot.send_message(message.chat.id, "Ваш id {} текст".format(userid))
либо
bot.send_message(message.chat.id, f"Ваш id {userid} текст")