摘要: 常用模块学习(六) 常用模块学习—subprocess模块详解2 subprocess.call()方法 #执行命令,返回命令执行状态 , 0 or 非0 >>> retcode = subprocess.call(["ls", "-l"]) #执行命令,如果命令结果为0,就正常返回,否则抛异常 > 阅读全文