pywin32访问excel2010-12-12programming tools约 87 字 预计阅读 1 分钟文章目录【注意】最后更新于 December 12, 2010,文中内容可能已过时,请谨慎使用。参考链接直接用上面的代码吧 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 import time import win32com.client as win32 #---------------------------------------------------------------------- def excel(): """""" xl = win32.gencache.EnsureDispatch('Excel.Application') ss = xl.Workbooks.Add() sh = ss.ActiveSheet xl.Visible = True time.sleep(1) sh.Cells(1,1).Value = 'Hacking Excel with Python Demo' time.sleep(1) for i in range(2,8): sh.Cells(i,1).Value = 'Line %i' % i time.sleep(1) ss.Close(False) xl.Application.Quit() if __name__ == "__main__": excel() 文章作者 Chen, Zai-Chun上次更新 2010-12-12许可协议 CC BY-NC-ND 4.0