杀excel进程:
app = win32com.client.Dispatch("Excel.Application")
这个是激活
Doc = app.Workbooks.Open(filepathname)
Sheet = Doc.Sheets(sheetNo)
这个是用表格的
app.Quit() 这个是退出
Sheet=None
Doc=None
app=None
while not app==None:
pythoncom.PumpWaitingMessages()
尤其是最后一个是必须的
否则app没有退出完,你再打开另外一个sheet就会出错