Python标准库itertools的使用方法


Posted in Python onJanuary 17, 2020

Python标准库itertools模块介绍

itertools是python内置的模块,使用简单且功能强大,这里尝试汇总整理下,并提供简单应用示例;如果还不能满足你的要求,欢迎加入补充。

使用Python标准库itertools只需简单一句导入:import itertools

chain()

与其名称意义一样,给它一个列表如 lists/tuples/iterables,链接在一起;返回iterables对象。

letters = ['a', 'b', 'c', 'd', 'e', 'f']
booleans = [1, 0, 1, 0, 0, 1]
print(list(itertools.chain(letters,booleans)))
#输出:['a', 'b', 'c', 'd', 'e', 'f', 1, 0, 1, 0, 0, 1]
print(tuple(itertools.chain(letters,letters[3:])))
#输出('a', 'b', 'c', 'd', 'e', 'f', 'd', 'e', 'f')
print(set(itertools.chain(letters,letters[3:])))
#输出:{'a', 'd', 'b', 'e', 'c', 'f'}
print(list(itertools.chain(letters,letters[3:])))
#输出:['a', 'b', 'c', 'd', 'e', 'f', 'd', 'e', 'f']
for item in list(itertools.chain(letters,booleans)):
print(item)

count()

生成无界限序列,count(start=0, step=1) ,示例从100开始,步长为2,循环10,打印对应值;必须手动break,count()会一直循环。

i = 0
  for item in itertools.count(100,2):
    i += 1
    if i > 10 : break
    
    print(item)

filterfalse()

 Python filterfalse(contintion,data) 迭代过滤条件为false的数据。如果条件为空,返回data中为false的项;

booleans = [1, 0, 1, 0, 0, 1]
numbers = [23, 20, 44, 32, 7, 12]
print(list(itertools.filterfalse(None,booleans)))
#输出:[0, 0, 0]
print(list(itertools.filterfalse(lambda x : x < 20,numbers)))
#输出:[23, 20, 44, 32]

compress()

返回我们需要使用的元素,根据b集合中元素真值,返回a集中对应的元素。

print(list(itertools.compress(letters,booleans)))
# ['a', 'c', 'f']

starmap()

针对list中的每一项,调用函数功能。starmap(func,list[]) ;

starmap(pow, [(2,5), (3,2), (10,3)]) --> 32 9 1000
>>> from itertools import *
>>> x = starmap(max,[[5,14,5],[2,34,6],[3,5,2]])
>>> for i in x:
>>> print (i)
14
34
5

repeat()

repeat(object[, times]) 重复times次;

repeat(10, 3) --> 10 10 10

dropwhile()

dropwhile(func, seq );当函数f执行返回假时, 开始迭代序列

dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1

takewhile()

takewhile(predicate, iterable);返回序列,当predicate为true是截止。

takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4

islice()

islice(seq[, start], stop[, step]);返回序列seq的从start开始到stop结束的步长为step的元素的迭代器

for i in islice("abcdef", 0, 4, 2):#a, c
  print i

product()

product(iter1,iter2, ... iterN, [repeat=1]);创建一个迭代器,生成表示item1,item2等中的项目的笛卡尔积的元组,repeat是一个关键字参数,指定重复生成序列的次数

# product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy
  # product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111
for i in product([1, 2, 3], [4, 5], [6, 7]):
  print i
(1, 4, 6)
(1, 4, 7)
(1, 5, 6)
(1, 5, 7)
(2, 4, 6)
(2, 4, 7)
(2, 5, 6)
(2, 5, 7)
(3, 4, 6)
(3, 4, 7)
(3, 5, 6)
(3, 5, 7)

permutations()

permutations(p[,r]);返回p中任意取r个元素做排列的元组的迭代器

for i in permutations([1, 2, 3], 3):
  print i
(1, 2, 3)
(1, 3, 2)
(2, 1, 3)
(2, 3, 1)
(3, 1, 2)
(3, 2, 1)

combinations()

combinations(iterable,r);创建一个迭代器,返回iterable中所有长度为r的子序列,返回的子序列中的项按输入iterable中的顺序排序

note:不带重复

for i in combinations([1, 2, 3], 2):
  print i
(1, 2)
(1, 3)
(2, 3)

combinations_with_replacement()

同上, 带重复 例子:

for i in combinations_with_replacement([1, 2, 3], 2):
  print i
(1, 1)
(1, 2)
(1, 3)
(2, 2)
(2, 3)
(3, 3)

应用示例

求质数序列中1,3,5,7,9,11,13,15三个数之和为35的三个数;

def get_three_data(data_list,amount):
  for data in list(itertools.combinations(data_list, 3)):
    if sum(data) == amount:
      print(data)
#(7, 13, 15)

更多python标准库使用方法请点击下面的相关文章

Python 相关文章推荐
python中stdout输出不缓存的设置方法
May 29 Python
Python中运行并行任务技巧
Feb 26 Python
windows下python连接oracle数据库
Jun 07 Python
遗传算法之Python实现代码
Oct 10 Python
python 字符串和整数的转换方法
Jun 25 Python
基于python3实现socket文件传输和校验
Jul 28 Python
Scrapy框架爬取Boss直聘网Python职位信息的源码
Feb 22 Python
PyQt5 实现字体大小自适应分辨率的方法
Jun 18 Python
python3中rank函数的用法
Nov 27 Python
详解Python3中的 input() 函数
Mar 18 Python
Python通过getattr函数获取对象的属性值
Oct 16 Python
Python使用openpyxl模块处理Excel文件
Jun 05 Python
Python实现投影法分割图像示例(二)
Jan 17 #Python
Python常用库大全及简要说明
Jan 17 #Python
Python Sphinx使用实例及问题解决
Jan 17 #Python
通过实例了解Python str()和repr()的区别
Jan 17 #Python
python无序链表删除重复项的方法
Jan 17 #Python
Python实现投影法分割图像示例(一)
Jan 17 #Python
np.dot()函数的用法详解
Jan 17 #Python
You might like
php实现html标签闭合检测与修复方法
2015/07/09 PHP
jquery ajax return没有返回值的解决方法
2011/10/20 Javascript
精心挑选的15款优秀jQuery 本特效插件和教程
2012/08/06 Javascript
js中的this关键字详解
2013/09/25 Javascript
jQuery实现鼠标移到元素上动态提示消息框效果
2013/10/20 Javascript
获取下拉列表框的值是数组,split,$.inArray示例
2013/11/13 Javascript
ECMAScript6块级作用域及新变量声明(let)
2015/06/12 Javascript
javascript html实现网页版日历代码
2016/03/08 Javascript
JS实现关闭当前页而不弹出提示框的方法
2016/06/22 Javascript
jQuery序列化后的表单值转换成Json
2017/06/16 jQuery
JQuery判断正整数整理小结
2017/08/21 jQuery
JavaScript重复元素处理方法分析【统计个数、计算、去重复等】
2017/12/14 Javascript
vue短信验证性能优化如何写入localstorage中
2018/04/25 Javascript
angularJs中json数据转换与本地存储的实例
2018/10/08 Javascript
JS学习笔记之原型链和利用原型实现继承详解
2019/05/29 Javascript
js实现简单的日历显示效果函数示例
2019/11/25 Javascript
详解JSON.stringify()的5个秘密特性
2020/05/26 Javascript
Python内置的字符串处理函数整理
2013/01/29 Python
python网络编程之文件下载实例分析
2015/05/20 Python
Python中扩展包的安装方法详解
2017/06/14 Python
python opencv3实现人脸识别(windows)
2018/05/25 Python
python 生成图形验证码的方法示例
2018/11/11 Python
Python获取航线信息并且制作成图的讲解
2019/01/03 Python
详解python配置虚拟环境
2019/04/08 Python
Python中变量的输入输出实例代码详解
2019/07/28 Python
中国第一家杂志折扣订阅网:杂志铺
2016/08/30 全球购物
大学生学业生涯规划
2014/01/05 职场文书
环保建议书作文
2014/03/12 职场文书
函授生自我鉴定
2014/03/25 职场文书
公司授权委托书范本
2014/04/03 职场文书
人事专员岗位说明书
2014/07/29 职场文书
2014年志愿者工作总结
2014/11/20 职场文书
销售经理工作检讨书
2015/02/19 职场文书
人身损害赔偿协议书
2016/03/22 职场文书
python读取mnist数据集方法案例详解
2021/09/04 Python
Python机器学习实战之k-近邻算法的实现
2021/11/27 Python