饺影 发表于 2022-5-17 10:28:35

问一下如何用py代码执行exe

就是想做到类似于
if user_input == "打开":
        在这里执行打开exe
谢谢各位大佬了

wp231957 发表于 2022-5-17 10:32:30

import os

if input()=="ok":
    os.system("notepad.exe")

Twilight6 发表于 2022-5-17 10:48:21

参考代码,os.startfile 打开外部应用程序,相当于双击 exe 文件:

import os
user_input = input(">>>")
if user_input == "打开":
    os.startfile(r"你的 exe 文件路径")

豆嘉木 发表于 2022-5-17 18:33:33

借助第三方库 pyinstaller,详细教程见:pyinstaller安装及使用教程
{:10_256:}最佳答案谢了亲{:10_256:}

饺影 发表于 2022-5-17 21:15:57

Twilight6 发表于 2022-5-17 10:48
参考代码,os.startfile 打开外部应用程序,相当于双击 exe 文件:

谢谢
页: [1]
查看完整版本: 问一下如何用py代码执行exe