使用python编写读写doc表格的示例
时间: 2024-02-12 22:05:13 浏览: 70
Python对Excel操作教程.doc
以下是使用 python-docx 库编写读写 doc 表格的示例代码:
```python
import docx
# 读取 doc 文件
document = docx.Document('example.docx')
# 获取所有表格
tables = document.tables
# 获取第一个表格
table = tables[0]
# 读取表格中的数据
for i, row in enumerate(table.rows):
text = [cell.text for cell in row.cells]
print(f'Row {i}: {text}')
# 添加新行到表格末尾
new_row = table.add_row().cells
new_row[0].text = 'New cell 1'
new_row[1].text = 'New cell 2'
# 将修改保存到 doc 文件
document.save('example.docx')
```
需要注意的是,使用 python-docx 库需要先安装:`pip install python-docx`。同时,使用该库的表格读写功能需要使用 Microsoft Word 2007 或以上版本创建的 docx 文件。
阅读全文