mcoll:python集合的现代API

时间:2024-06-26 20:10:32
【文件属性】:

文件名称:mcoll:python集合的现代API

文件大小:6KB

文件格式:ZIP

更新时间:2024-06-26 20:10:32

Python

Python 集合的现代 API 基本原理 在 Python 中,我们有像map 、 reduce 、 filter和其他用于操作集合的好函数,但是使用超过两三个的函数是一团糟: reduce ( operator . add , filter ( lambda x : x > 5 , map ( lambda x : x . value , coll ))) 对于理解/生成器表达式,它稍微好一点: reduce ( operator . add , ( x [ 0 ] + x [ 1 ] for x in zip (( x . value for x in coll if x . value > 5 ), range ( 5 )))) 在 Python 中,我们没有线


【文件预览】:
mcoll-master
----requirements.txt(10B)
----.travis.yml(134B)
----tox.ini(82B)
----mcoll()
--------utils.py(973B)
--------__init__.py(2B)
--------t.py(2KB)
----setup.py(452B)
----README.md(3KB)
----tests()
--------test_t.py(4KB)
--------__init__.py(20B)
----.gitignore(744B)

网友评论