官方:https://yiyibooks.cn/xx/python_352/library/itertools.htmlhtml
參考:python
http://www.javashuo.com/article/p-ggfqtitv-he.html函數
介紹
itertools是python內置的模塊,使用簡單且功能強大,使用只需簡單一句導入:import itertools.net
與其名稱意義同樣,給它一個列表如 lists/tuples/iterables,連接在一塊兒;返回iterables對象。3d
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(start=0, step=1) ,示例從100開始,步長爲2,循環10,打印對應值;必須手動break,count()會一直循環。htm
i = 0 for item in itertools.count(100,2): i += 1 if i > 10 : break print(item)
Python filterfalse(contintion,data) 迭代過濾條件爲false的數據(注意:最終結果僅會展現 爲 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]
返回咱們須要使用的元素,根據b集合中元素真值,返回a集中對應的元素。blog
print(list(itertools.compress(letters,booleans))) # ['a', 'c', 'f']
針對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(object[, times]) 重複times次;
repeat(10, 3) --> 10 10 10
dropwhile(func, seq );當函數f執行返回假時, 開始迭代序列
dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1
takewhile(predicate, iterable);返回序列,當predicate爲true是截止。
takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4
islice(seq[, start], stop[, step]);返回序列seq的從start開始到stop結束的步長爲step的元素的迭代器
for i in islice("abcdef", 0, 4, 2):#a, c print i
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(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(iterable,r);建立一個迭代器,返回iterable中全部長度爲r的子序列,返回的子序列中的項按輸入iterable中的順序排序
note:不帶重複
for i in combinations([1, 2, 3], 2): print i (1, 2) (1, 3) (2, 3)
例子:
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) #(9, 11, 15)