第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

有沒有辦法格式化數(shù)據(jù)透視表并將其嵌入到python的電子郵件中?

有沒有辦法格式化數(shù)據(jù)透視表并將其嵌入到python的電子郵件中?

慕妹3146593 2022-09-06 21:23:55
我使用來自另一個數(shù)據(jù)幀的數(shù)據(jù)創(chuàng)建了一個數(shù)據(jù)透視表數(shù)據(jù)幀(df_pivot)。我創(chuàng)建了df_html = df_pivot.to_html()。然后我使用win32com(郵件。HTMLBody = df_html)發(fā)送一封正文中包含數(shù)據(jù)透視表的電子郵件。此功能工作正常。我希望能夠在電子郵件中格式化表格(居中對齊,為單元格著色等),使其看起來更美觀。
查看完整描述

1 回答

?
四季花海

TA貢獻1811條經(jīng)驗 獲得超5個贊

你可以看看熊貓。使您能夠為數(shù)據(jù)幀提供樣式的樣式(即單元格顏色、對齊方式等)。


設(shè)置數(shù)據(jù)幀樣式后,您可以使用他們的方法收集關(guān)聯(lián)的 HTML,然后就開始了!render()


In [0]: df = pd.DataFrame([1])                                                                               


In [1]: html = df.style.set_properties(**{'background-color': 'black', 

    ...:                                  'color': 'lawngreen', 

    ...:                                  'border-color': 'white'}).render()

In [2]: print(html)                                             

Out[2]: <style type="text/css">

    #T_f804fbf6_6947_11ea_b4ca_8c8590b95ef2row0_col0 {

        background-color: black;

        color: lawngreen;

        border-color: white;

    }

</style>

<table id="T_f804fbf6_6947_11ea_b4ca_8c8590b95ef2">

    <thead>

        <tr>

            <th class="blank level0"></th>

            <th class="col_heading level0 col0">0</th>

        </tr>

    </thead>

    <tbody>

        <tr>

            <th id="T_f804fbf6_6947_11ea_b4ca_8c8590b95ef2level0_row0" class="row_heading level0 row0">0</th>

            <td id="T_f804fbf6_6947_11ea_b4ca_8c8590b95ef2row0_col0" class="data row0 col0">1</td>

        </tr>

    </tbody>

</table>'


查看完整回答
反對 回復(fù) 2022-09-06
  • 1 回答
  • 0 關(guān)注
  • 99 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號