从docx文件读取特殊字符时出错。我需要一个表格盒

时间:2019-05-25 08:11:22

标签: python docx

我尝试使用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

结果是没有表格框的普通文本。

谢谢!

0 个答案:

没有答案