标签: python excel xlwt
我使用python写入openoffice calc文件。 写完文件后如何打开文件? (打开意味着用户会在我的程序退出之前看到它吗?)
由于
答案 0 :(得分:0)
使用
: os.startfile(filename)
os.startfile(filename)
for Linux
subprocess.Popen2(filename)
答案 1 :(得分:0)
如果您使用PyUno,则可以加载当前文档
document = desktop.getCurrentComponent()
另一份有用的文件here
答案 2 :(得分:0)
谢谢大家, 我正在使用ubuntu所以这对我有用:
import webbrowser webbrowser.open("path_to_file")