使用 python 脚本发送到松弛通道的消息未正确对齐

Message sent to slack channel using python script is not properly aligned

我正在尝试使用 python 脚本向 Slack 频道发送消息。消息被传送到松弛通道,但我发现下一个的格式不正确。

下面给出的是我的数据框,但是当它被发送到松弛通道时,文本没有正确对齐。

name, sales_prct,return_prct
product_id_1234567, 45%, 2%
product_id_45764333, 65%, 12%
product_id_675335, 42%, 7%

为了在 slack 中格式化文本,我们应该在文本前后使用三个反引号“```”。所以你可以在 python 中格式化你的字符串,如下所示:

message = f"Hello, given below is the summary ```{df}```"