您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關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”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。