我尝试使用docx库从我的Word文档中获取特殊字符(表格的框)。我的代码是:
for position, block in enumerate(documentList):
if ("EXPL" in normalize_string(block.text) and "PERSON" in normalize_string(block.text)):
table = documentList[position+3].table
text = table.cell(1,1).text
结果是没有表格框的普通文本。
谢谢!