python 执行系统命令的方式

os.system('ps aux') 只返回0 表示成功

os.popen('ps aux') .readlines() 通过管道方式 可以拿到返回值

你可能感兴趣的:(python 执行系统命令的方式)