1

我知道我可以通过将 Visible 设置为 true 来使用 win32com 打开 MS Excel 应用程序 我可以使用 xlrd 或 xlwt 做同样的事情吗?

4

1 回答 1

0

xlrd 和 xlwt 都是用于读取 Excel 文件(即存储格式)的库 - 它们与实际的 Excel 可执行文件或库没有任何联系(它们甚至不需要 Excel 可以安装在相关系统上(我是使用它们,例如在 CentOS 机器上)。

如果您只是想启动 Excel,您可以使用subprocess

# Note, your path probably differs
subprocess.call(r"C:\Program Files\Microsoft Office\Office12\EXCEL.exe")

# The script will wait until Excel is closed and then continue
于 2012-08-01T20:46:44.293 回答