doc.core_properties.keywords方法
时间: 2023-06-19 09:03:31 浏览: 262
AHPS.rar_ahp
`doc.core_properties.keywords` 是一个属性,用于访问文档对象的关键字属性。这个属性返回一个字符串,其中包含逗号分隔的关键字列表。
以下是使用 `doc.core_properties.keywords` 属性的示例代码:
```python
from docx import Document
# 创建一个空的 Word 文档对象
document = Document()
# 设置文档的关键词属性
document.core_properties.keywords = 'Python, Docx, Word'
# 获取文档的关键词属性
keywords = document.core_properties.keywords
print(keywords) # 输出:Python, Docx, Word
```
在上面的代码中,我们首先创建了一个空的 Word 文档对象。然后,使用 `document.core_properties.keywords` 属性设置文档的关键词属性为“Python, Docx, Word”。最后,我们获取文档的关键词属性,并将其输出到控制台。
阅读全文