python word转txt
时间: 2023-10-23 14:15:21 浏览: 269
要将Word文档转换为txt文件,可以使用Python中的python-docx库来实现。首先,确保已经安装了该库,然后按照以下步骤进行操作:
1. 导入所需的模块:
```python
from docx import Document
```
2. 打开Word文档:
```python
doc = Document('your_word_file.docx') # 替换 'your_word_file.docx' 为你的Word文件路径
```
3. 循环遍历文档中的段落,并将其写入txt文件:
```python
with open('output.txt', 'w', encoding='utf-8') as file:
for paragraph in doc.paragraphs:
file.write(paragraph.text + '\n')
```
其中,'output.txt' 是保存txt文件的路径和名称。
完整的代码如下所示:
```python
from docx import Document
doc = Document('your_word_file.docx')
with open('output.txt', 'w', encoding='utf-8') as file:
for paragraph in doc.paragraphs:
file.write(paragraph.text + '\n')
```
请替换 'your_word_file.docx' 为你的Word文档路径,然后运行以上代码即可将Word文档转换为txt文件。
阅读全文