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
标签:outlook,word,python,ceshi,xlApp,client,win32com,Sheet 来源: https://www.cnblogs.com/wingxyz/p/16476129.html