python-docx paragraph style
时间: 2023-10-31 08:06:10 浏览: 302
python docx字体设置
5星 · 资源好评率100%
好的,关于 python-docx 中的段落样式,你可以通过 `docx.enum.style.WD_STYLE_TYPE.PARAGRAPH` 枚举类型来获取所有的段落样式,然后通过 `document.styles['样式名称']` 来获取指定的样式对象。例如,获取 Normal 样式对象的代码如下:
```python
from docx import Document
from docx.enum.style import WD_STYLE_TYPE
document = Document()
styles = document.styles
normal_style = styles[WD_STYLE_TYPE.PARAGRAPH]['Normal']
```
你也可以通过 `paragraph.style` 属性来获取段落的样式对象,例如:
```python
from docx import Document
document = Document()
paragraph = document.add_paragraph('Hello, World!')
style = paragraph.style
```
阅读全文