Python执行linux系统命令 Posted on 2018-05-31 | Post modified: 2018-07-22 Python执行linux系统命令 python执行linux系统命令os.system(cmd) 返回的是一串数字,执行成功的数字是0,执行失败是大于0的数字 os.popen(cmd) 返回系统执行命令的结果 commands模块 commands.getoutput(cmd) commands.getstatusoutput(cmd)