Python-docx无法识别表

时间:2017-08-30 13:02:08

标签: python-docx abbyy

我已使用ABBYY finereader将PDF文档转换为word文档。 python-docx包无法识别word文档中的表 以下是表格格式: Sample table

以下是我的代码:

from docx.api import Document
if __name__=='__main__':
    document = Document('../Data/question.docx')
    table = document.tables
    num_of_tables = (len(table))
    print('num_of_tables ',num_of_tables)

输出

  

num_of_tables:0

请让我知道你的建议

0 个答案:

没有答案