[目录] 1.os.system(cmd) 2.os.popen(cmd) 3.利用subprocess模块 4.subprocessor模块进阶 [概述] 考虑这样一个问题,有hello.py脚本,输出”hello, world!”:有testinput.py脚本,等待用户输入,然后打印用户输入的数据.那么,怎么样把hello.py输出内容发送给testinput.py,最后testinput.py打印接收到的”hello, world!”.下面我来逐步讲解一下shell的交互方式. hell…