标签: ipython
我正在使用IPythons getoutput()在后台运行一个进程。这很好,因为它没有在我的机器上打开一个单独的窗口(我在Spyder IDE中使用了IPython shell)。
getoutput()
有没有办法从子流程中捕获返回状态?
答案 0 :(得分:0)
查看子流程模块:http://docs.python.org/library/subprocess.html 具体来说,看看popen()。