python 打开exe文件的代码
时间: 2023-05-22 11:01:52 浏览: 126
python-excel-多文件合并程序-点击exe软件即可运行,无需会代码
您可以使用 Python 的 subprocess 模块来打开 exe 文件,以下是示例代码:
import subprocess
subprocess.call('path/to/exe/file.exe')
请注意,您需要将 'path/to/exe/file.exe' 替换为您实际的 exe 文件路径。
阅读全文