使用python将ppt文件批量转为pptx、批量提取ppt中的文字保存
import osfrom pptx import Presentationfrom docx import Documentimport os.pathimport win32com.clientclass PPT2Word(object): """将filepath对应的pptx文件中的文字提取,并保存为同名docx文档""" def __init__(self, filepath): self.wordfile