ID = {'id_RU': 'Ваш ID: {id}', 'id_EN': 'Your ID: {id}'}
from telebot import *
from config import TOKEN
import messages as mes
bot = telebot.TeleBot(TOKEN, parse_mode = 'html')
bot_username = bot.get_me().username
print('START | Бот готов к работе')
@bot.message_handler(commands = ['start', 'help'])
def start(message):
lan = 'RU'
id = message.from_user.id
bot.send_message(user_id, mes.ID[f'id_{lan}'])
bot.polling(none_stop = True)
Ваш ID: цифры
Ваш ID: {id}
ID = {'id_RU': 'Ваш ID: , 'id_EN': 'Your ID: '}
mes.ID[f'id_{lan}'] + f"{id}"