20210514docx把word中的表格批量删除

docx把word中的表格批量删除
for k in range(len(doc.tables)-1,-1,-1):
doc.tables[k]._element.getparent().remove(doc.tables[k]._element)

你可能感兴趣的:(20210514docx把word中的表格批量删除)