花费 53 ms
python 之 多进程

阅读目录 1. Process 2. Lock 3. Semaphore 4. Event 5. Queue 6. Pipe 7. Pool ...

Tue Jun 28 06:24:00 CST 2016 1 14772
python 之 内置函数大全

一、罗列全部的内置函数   戳:https://docs.python.org/2/library/functions.html 二、range、xrange(迭代器)   无论是range() ...

Wed Jun 29 04:35:00 CST 2016 0 8444
python2.x 默认编码问题

python2.x中处理中文,是一件头疼的事情。网上写这方面的文章,测次不齐,而且都会有点错误,所以在这里打算自己总结一篇文章。 我也会在以后学习中,不断的修改此篇博客。 这里假设读者已有与编码相 ...

Sat Oct 01 01:32:00 CST 2016 0 7856
python中WSGI是什么

uswgi学习文档 http://uwsgi-docs-cn.readthedocs.io/zh_CN/latest/WSGIquickstart.html WSGI是什么? WSGI,全 ...

Mon Aug 29 21:37:00 CST 2016 0 5641
python的猴子补丁monkey patch

monkey patch指的是在运行时动态替换,一般是在startup的时候. 用过gevent就会知道,会在最开头的地方gevent.monkey.patch_all();把标准库中的thread ...

Mon Aug 29 22:10:00 CST 2016 0 3483
python之list去重

问题就是对一个list中的新闻id进行去重,去重之后要保证顺序不变。 直观方法 最简单的思路就是: 复制代码代码如下: ids = [1,2,3,3,4,2,3,4,5,6 ...

Fri Sep 02 18:51:00 CST 2016 0 3290

 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM