天天看点

学习Python os.popen启动程序

os.popen()是非阻塞的。(区别于os.system(),该方法是阻塞的,需要等待进程返回值)

os.popen()返回对象的read()方法可以实现阻塞。

os.popen()返回对象:The return value is an open file object connected to the pipe, which can be read or written depending on whether mode is ‘r’ (default) or ‘w’ ref Python Doc