如何在python电报机器人中写下粗体

时间:2018-03-16 18:22:25

标签: python bots telegram

我正在用python写一个电报机器人。我想用粗体字母打印消息。我尝试使用*和**,但它没有帮助。 是否有格式化功能或方法?

1 个答案:

答案 0 :(得分:3)

您应该使用:

bot.send_message(chat_id=chat_id, text="*bold* Example message", 
                parse_mode=telegram.ParseMode.MARKDOWN)

或者:

bot.send_message(chat_id=chat_id, text='<b>Example message</b>', 
                  parse_mode=telegram.ParseMode.HTML)

更多信息: https://github.com/python-telegram-bot/python-telegram-bot/wiki/Code-snippets#message-formatting-bold-italic-code-