import os
#运行其他exe程序
def run_exe(file_path):
os.system(file_Path)
#调用
run_exe("d:\\qq.exe")
python运行其他应用程序
最新推荐文章于 2023-05-30 16:48:39 发布
import os
#运行其他exe程序
def run_exe(file_path):
os.system(file_Path)
#调用
run_exe("d:\\qq.exe")