os.systemos.popen(可将cmd输出作为返回值)方法threading模块多线程 os.systemos.system默认阻塞当前程序执行,在cmd命令前加入start可不阻塞当前程序执行。例如: import os os.system(r"start E:\TX\qq.exe") os.popen(可将cmd输出作为返回值)方法 threading模块多线程菜鸟教程