我已使用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
请让我知道你的建议