如何用python实现对word的编辑


def openfile(self):
  p1=END
  oname=askopenfilename(filetypes=[("文本文档","*.txt")])
  if oname:
   for line in fileinput.input(oname):
    self.st.insert(p1,line)
   self.t.title(oname)
def savefile(self):
  sname=asksaveasfilename()
  if sname:
   ofp=open(sname,"w")
   ofp.write(self.st.get(1.0,END))
   ofp.flush()
   ofp.close()
   self.t.title(sname)

这是菜单当中的打开命令的代码,如何使其同时实现对txt和doc文件的阅读,或者改为对doc的阅读

python doc word txt

我是冰山控啊 9 years, 11 months ago

采用win32com,操作word,根据word VBA文档来操作,基本上可以用代码实现,word的功能。

Dēvīl﹖ answered 9 years, 11 months ago

Your Answer