I basically have a variable that contains the string. This is not a fixed string and is being changed by the user, so every time user uses the bot - string changes. My question is how to send a message from the bot to the user making text in variable bold?
For example, my code is
bot.send_message(message.chat.id, "Your number is — " + "<b>" + str(text) + "</b>", parse_mode='HTML')
What I expect to see is
Your number is - 204566234
How can it be done in PyTelegramBotAPI?