python win32com操作word ,excel, ppt, outlook等


os

 

 

python win32com可以直接操作office对象,速度快。注意:win32com有时候没有代码智能提示

 

In [ ]:

import win32com.client

 

 

操作Word

 

In [ ]:

def OpenWord(filename):
    global word                                         #把word设为全局变量,在函数外也可以使用
    word = win32com.client.Dispatch('Word.Application')
    word.Visible=True
    word.Documents.Open(filename) 

 

In [ ]:

OpenWord(r"C:/Yodao/coding/Working_Sheet.doc")

 

In [ ]:

word.ActiveDocument.Close()
word.Quit()

 

 

操作excel

 

In [ ]:

xlApp = win32com.client.Dispatch('Excel.Application')
xlApp.Visible=True

ceshi=xlApp.Workbooks.Open(r"C:/Yodao/coding/Working_Sheet.doc")

 

In [ ]:

ceshi.Worksheets("Sheet1").Range("A1").Value="Date"

 

In [ ]:

ceshi.Worksheets.Count

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/274211.html

(0)
上一篇 2022年7月14日
下一篇 2022年7月14日

相关推荐

发表回复

登录后才能评论