亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何將excel內容批量轉化為pdf

發布時間:2021-11-25 15:12:55 來源:億速云 閱讀:1239 作者:小新 欄目:大數據

這篇文章給大家分享的是有關Python如何將excel內容批量轉化為pdf的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

項目名稱:

將excel內容批量轉化為pdf

知識點:

  • python 操作 excel

  • python 操作 pdf

  • html

開發環境:

  • 解釋器: Python 3.6.5 | Anaconda, Inc.

  • 編輯器: pycharm 社區版

代碼

導入工具

import openpyxl
import pdfkit

加載一個本地文件

workbook = openpyxl.load_workbook('2020經銷商目標.xlsx')

def func(money):
    # print(money)
    str_number = f'{money}'
    str_list = list(str_number[::-1])
    str_ = ""
    i = 1
    for no, char in enumerate(str_list):
        str_ += char
        # print(no, char)
        if i % 3 == 0 and len(str_list) != i:
            str_ += ','
        i += 1
    # print(str_[::-1])
    return str_[::-1]

sheet1 = workbook['Sheet1']
print(sheet1)
for row in list(sheet1.rows)[3:]:
    for col in row[1:]:
        print(col.value, end='\t')
    code = row[1].value
    name = row[2].value
    number = row[3].value
    money = row[4].value
    total = row[5].value
    print(code, name, number, money)


    str_number = func(number)
    str_money = func(money)
    str_total = func(total)
    html = html.replace('code', code)
    html = html.replace('name', name)
    html = html.replace('number', f'{str_number}.00')
    html = html.replace('money', f'{str_money:}.00')
    html = html.replace('total', f'{str_total}.00')
    # print(html)
    with open('example.html', mode='w', encoding='utf-8') as f:
         f.write(html)

配置pdf的轉化軟件

config = pdfkit.configuration(wkhtmltopdf='C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltopdf.exe')

from_file 文件的名字 保存文件的名字 轉化軟件的配置

pdfkit.from_file('example.html', f'{name}.pdf', configuration=config)

轉化為PDF

html = """
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        table {
            font-size: 22px;
            width: 850px;
        }

        .blod {
            font-weight: bolder;
        }
    </style>
</head>
<body>
<table border="1" align="center">
    <tr>
        <td align="center" colspan="6">2020年廣東經銷商預算目標</td>
    </tr>
    <tr>
        <td>經銷商代碼</td>
        <td>經銷商名稱</td>
        <td>成車數量</td>
        <td>成車金額</td>
        <td>商品金額</td>
        <td>客戶簽字</td>
    </tr>
    <tr class="blod">
        <td>code</td>
        <td>name</td>
        <td>number</td>
        <td>money</td>
        <td>total</td>
        <td></td>
    </tr>
</table>
</body>
</html>

最后運行代碼,效果如下圖

Python如何將excel內容批量轉化為pdf

感謝各位的閱讀!關于“Python如何將excel內容批量轉化為pdf”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武乡县| 铁力市| 拜泉县| 鸡东县| 德州市| 马山县| 江安县| 宝丰县| 高淳县| 阿巴嘎旗| 安泽县| 阿克陶县| 革吉县| 仙游县| 阿鲁科尔沁旗| 五大连池市| 盖州市| 南平市| 平罗县| 赣榆县| 隆昌县| 太仆寺旗| 丘北县| 正定县| 广宗县| 灌南县| 冷水江市| 曲水县| 麟游县| 张北县| 宣武区| 股票| 南投市| 阿瓦提县| 怀来县| 拉萨市| 诸城市| 蓬安县| 东乌珠穆沁旗| 曲松县| 衢州市|