Python将word文档的style以文本形式输出,输出还要包括该style的全部属性以及数值
时间: 2023-05-16 13:05:37 浏览: 220
可以使用python-docx库来实现将word文档的style以文本形式输出,具体代码如下:
```python
from docx import Document
doc = Document('example.docx')
styles = doc.styles
for style in styles:
print(style.name)
for key, value in style.font.__dict__.items():
if not key.startswith('_'):
print(key, value)
```
其中,`Document`函数用于打开word文档,`styles`属性获取文档中所有的style,`style.name`获取style的名称,`style.font.__dict__`获取style的所有属性以及对应的数值。
阅读全文