编程语言
首页 > 编程语言> > 如何在python电报bot中写粗体

如何在python电报bot中写粗体

作者:互联网

这个问题已经在这里有了答案:            >            How do I print bold text in Python?                                    10个
我正在用python写一个电报机器人.我想用粗体字母打印消息.我尝试使用*和**,但这无济于事.
有格式化功能或执行格式化的方法吗?

解决方法:

您应该使用:

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-

标签:telegram,bots,python
来源: https://codeday.me/bug/20191109/2012274.html