📜  python 打开 excel 应用程序 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:22.132000             🧑  作者: Mango

代码示例1
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()