我使用’xlwt’作为我的
Python项目的一部分写入Excel文件.我还需要实际打开Excel电子表格进行显示并关闭它.我发现了一个功能:
import webbrowser webbrowser.open('C:/Users/300231823/Desktop/GUI/simplenew4.xls')
我是编程新手,3周前我开始使用Python.
解决方法
from win32com.client import Dispatch xl = Dispatch("Excel.Application") xl.Visible = True # otherwise excel is hidden # newest excel does not accept forward slash in path wb = xl.Workbooks.Open(r'C:\Users\300231823\Desktop\GUI\simplenew4.xls') wb.Close() xl.Quit()
win32com模块是pywin32的一部分.