我正在调用一个exe(它依赖于其他批处理文件),Python正在给出错误.我能够调用exe(这是独立的)
我在做什么..
import os
os.system("notepad.exe") # is working
Run Code Online (Sandbox Code Playgroud)
但
os.system("c:/ank.exe") # this is giving error as ank.exe is dependent on other batch files
Run Code Online (Sandbox Code Playgroud) python ×1