python txt转docx
时间: 2023-09-01 16:07:56 浏览: 270
python-docx2txt, 一种基于 python的实用工具,用于从docx文件提取文本和图像.zip
你可以使用 Python 中的 python-docx 模块将纯文本文件转换为 Word 文档。首先,你需要安装该模块。在命令行中输入以下命令:
```
pip install python-docx
```
接下来,你可以使用以下代码将纯文本文件转换为 Word 文档:
```python
import docx
# 打开文本文件
with open('input.txt', 'r') as f:
text = f.read()
# 创建一个新的 Word 文档
doc = docx.Document()
# 将文本添加到文档中
doc.add_paragraph(text)
# 保存 Word 文档
doc.save('output.docx')
```
在代码中,你需要将 `input.txt` 替换为你的文本文件路径,将 `output.docx` 替换为你想要保存的 Word 文档路径。运行该代码后,你将在指定的位置看到生成的 Word 文档。
阅读全文