如何用Python将批量word文档转PDF
时间: 2024-05-01 22:21:15 浏览: 182
python代码把多个word文档转换成pdf文档的实现
你可以使用Python的`docx2pdf`库来将批量的Word文档转换为PDF格式。以下是一个简单的示例代码:
```
from docx2pdf import convert
import os
# 获取目标文件夹下所有的.docx文件
docx_files = [f for f in os.listdir() if f.endswith('.docx')]
# 批量转换为.pdf文件
for file in docx_files:
convert(file)
```
在运行这段代码之前,你需要首先安装`docx2pdf`库,可以使用以下命令:
```
pip install docx2pdf
```
这样就可以将所有.docx文件批量转换为.pdf文件了。
阅读全文