<small id='KDoby'></small><noframes id='KDoby'>

      <legend id='KDoby'><style id='KDoby'><dir id='KDoby'><q id='KDoby'></q></dir></style></legend>
    1. <tfoot id='KDoby'></tfoot>

    2. <i id='KDoby'><tr id='KDoby'><dt id='KDoby'><q id='KDoby'><span id='KDoby'><b id='KDoby'><form id='KDoby'><ins id='KDoby'></ins><ul id='KDoby'></ul><sub id='KDoby'></sub></form><legend id='KDoby'></legend><bdo id='KDoby'><pre id='KDoby'><center id='KDoby'></center></pre></bdo></b><th id='KDoby'></th></span></q></dt></tr></i><div id='KDoby'><tfoot id='KDoby'></tfoot><dl id='KDoby'><fieldset id='KDoby'></fieldset></dl></div>

        <bdo id='KDoby'></bdo><ul id='KDoby'></ul>
    3. 如何使用Telegram Python机器人发送粗体文本

      How to send bold text using Telegram Python bot(如何使用Telegram Python机器人发送粗体文本)
    4. <legend id='HiIeI'><style id='HiIeI'><dir id='HiIeI'><q id='HiIeI'></q></dir></style></legend>
        <tbody id='HiIeI'></tbody>

          <tfoot id='HiIeI'></tfoot>
        1. <small id='HiIeI'></small><noframes id='HiIeI'>

          • <bdo id='HiIeI'></bdo><ul id='HiIeI'></ul>
            • <i id='HiIeI'><tr id='HiIeI'><dt id='HiIeI'><q id='HiIeI'><span id='HiIeI'><b id='HiIeI'><form id='HiIeI'><ins id='HiIeI'></ins><ul id='HiIeI'></ul><sub id='HiIeI'></sub></form><legend id='HiIeI'></legend><bdo id='HiIeI'><pre id='HiIeI'><center id='HiIeI'></center></pre></bdo></b><th id='HiIeI'></th></span></q></dt></tr></i><div id='HiIeI'><tfoot id='HiIeI'></tfoot><dl id='HiIeI'><fieldset id='HiIeI'></fieldset></dl></div>

                本文介绍了如何使用Telegram Python机器人发送粗体文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在用Python编写一个电报机器人。我想用粗体字母发送信息。我尝试将消息同时封闭在***中,但没有解决问题。

                是否有用于标记或HTML格式设置的函数或方法?

                推荐答案

                您应该使用:

                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 Python机器人发送粗体文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
                Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
                Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
                Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
                Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
                Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)

                  <tfoot id='g8siX'></tfoot>

                        <tbody id='g8siX'></tbody>

                      <small id='g8siX'></small><noframes id='g8siX'>

                        <bdo id='g8siX'></bdo><ul id='g8siX'></ul>
                        • <legend id='g8siX'><style id='g8siX'><dir id='g8siX'><q id='g8siX'></q></dir></style></legend>
                          <i id='g8siX'><tr id='g8siX'><dt id='g8siX'><q id='g8siX'><span id='g8siX'><b id='g8siX'><form id='g8siX'><ins id='g8siX'></ins><ul id='g8siX'></ul><sub id='g8siX'></sub></form><legend id='g8siX'></legend><bdo id='g8siX'><pre id='g8siX'><center id='g8siX'></center></pre></bdo></b><th id='g8siX'></th></span></q></dt></tr></i><div id='g8siX'><tfoot id='g8siX'></tfoot><dl id='g8siX'><fieldset id='g8siX'></fieldset></dl></div>