所以我正在使用 pyTelegramBotApi 制作我的第一个电报机器人。问题是:我的机器人中包含一个 pandas DataFrame。而当用户向bot发送一些特殊的文本时,bot需要将这个DataFrame发送给用户。我通过将 DataFrame 转换为字符串值来做到这一点:
table = df.to_string(columns = ['Name', 'Description'], index = False, header = False, line_width = 70, justify = 'left')
bot.send_message(message.chat.id, table)
(我也不能左对齐,它总是居中)
有没有其他方法可以做到这一点?