全部博文(921)
发布时间:2016-09-04 13:09:05
Twisted是基于异步模式的开发框架,因而利用Twisted进行非阻塞编程自然也是必会的用法,下面我们就来一起看一下使用Python的Twisted框架编写非阻塞程序的代码示例:# For years we thought this was all there was... We kept hiring more # developers, more managers and buying servers. .........【阅读全文】
发布时间:2016-04-16 18:01:21
python中的reduce python中的reduce内建函数是一个二元操作函数,他用来将一个数据集合(链表,元组等)中的所有数据进行下列操作:用传给reduce中的函数 func()(必须是一个二元操作函数)先对集合中的第1,2个数据进行操作,得到的结果再与第三个数据用func()函数运算,最后得到一个结果。如: &nb.........【阅读全文】
发布时间:2016-04-14 19:39:32
import loggingimport zmq class ZmqClient (object): def __init__(self, socket, logger): super(ZmqClient, self).__init__() &n.........【阅读全文】
发布时间:2016-03-28 18:19:59
python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素. 集合对象还支持union(联合), intersection(交), difference(差)和sysmmetric difference(对称差集)等数学运算.sets 支持 x in set, len(set),和 for x in set。作为一个无序的集合,sets不记录元.........【阅读全文】
发布时间:2016-03-24 10:57:33
有时候,为了需求,需要统计两个 list 之间的交集,并集,差集。查询了一些资料,现在总结在下面:1. 获取两个list 的交集#方法一:a=[2,3,4,5]b=[2,5,8]tmp = [val for val in a if val in b]print tmp#[2, 5]#方法二print l.........【阅读全文】