问一下如何用py代码执行exe
就是想做到类似于if user_input == "打开":
在这里执行打开exe
谢谢各位大佬了
import os
if input()=="ok":
os.system("notepad.exe") 参考代码,os.startfile 打开外部应用程序,相当于双击 exe 文件:
import os
user_input = input(">>>")
if user_input == "打开":
os.startfile(r"你的 exe 文件路径") 借助第三方库 pyinstaller,详细教程见:pyinstaller安装及使用教程
{:10_256:}最佳答案谢了亲{:10_256:} Twilight6 发表于 2022-5-17 10:48
参考代码,os.startfile 打开外部应用程序,相当于双击 exe 文件:
谢谢
页:
[1]