#一、执行shell命令的状态返回值 #--- v_return_status=os.system('sh hello.sh') print"v_return_status="+str(v_return_status) 输出结果: hello world! succeed v_return_status=0 2. 使用os.popen返回结果 无返回终端,只打印输出内容 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #--- #二(...