如何在python中的庞大模块对象中查找元素

2024-05-14 21:40:20 发布

您现在位置:Python中文网/ 问答频道 /正文

import mammoth

Docx = open(r'D:\python\temp\sampletable.docx', 'rb')

document = mammoth.convert_to_html(Docx)

例如,我想找到<;表>;文档对象中的元素


Tags: to文档importltgtconverthtmlopen

热门问题