python 标准输入输出stdin stdou stderr的学习

http://zonghe.17xie.com/book/10558369/50809.html

subprocess学习

http://blog.sina.com.cn/s/blog_64d75a250100i9tv.html

GIL让python的解析器更容易写,但也让Python中的线程有点鸡肋的感觉。事实上能受益于Python的线程模式的只有处于IO瓶颈的程序或者以图形为主程序。而对于渴求CPU的程序,线程不但不能让程序更快,反而让程序更慢。

http://jawahh.sjtubbs.org/2008/09/python-26-multiprocessing.html

原文地址:https://www.cnblogs.com/lexus/p/1832152.html