windows上可以使用os.startfile

os.startfile(file_path)
 

linux上可以使用xdg-open

subprocess.call(["xdg-open",file_path])

 

mac os上可以使用open

subprocess.call(["open", file_path])