windows上可以使用os.startfile
os.startfile(file_path)
linux上可以使用xdg-open
subprocess.call(["xdg-open",file_path])
mac os上可以使用open
subprocess.call(["open", file_path])
windows上可以使用os.startfileos.startfile(file_path)linux上可以使用xdg-opensubprocess.call(["xdg-open",file_path])mac os上可以使用opensubprocess.call(["open", file_path])转载于:https://ww...
os.startfile(file_path)
subprocess.call(["xdg-open",file_path])
subprocess.call(["open", file_path])
转载于:https://www.cnblogs.com/dapanya/p/10275690.html
更多推荐
所有评论(0)