我已经使用 ABBYY Finereader 将 PDF 文档转换为 word 文档。python-docx包无法识别word文档中存在的表格下面是表格格式:
下面是我的一段代码:
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
请让我知道你的建议