chain(p,q,...)
迭代至序列p的最后一個(gè)元素后,從q的第一個(gè)元素開始,直到所有序列終止。
chain('ABC','DEF')-->ABCDEF
compress(data,selectors)
如果bool(selectors[n])為True,則next()返回data[n],否則跳過data[n]。
compress('ABCDEF',[1,0,1,0,1,1])-->ACEF
dropwhile(pred,seq)
當(dāng)pred對seq[n]的調(diào)用返回False時(shí)才開始迭代。
dropwhile(lambdax:x<5,[1,4,6,4,1])-->641
takewhile(pred,seq)
dropwhile的相反版本。
takewhile(lambdax:x<5,[1,4,6,4,1])-->14
ifilter(pred,seq)
內(nèi)建函數(shù)filter的迭代器版本。
ifilter(lambdax:x%2,range(10))-->13579
ifilterfalse(pred,seq)
ifilter的相反版本。
ifilterfalse(lambdax:x%2,range(10))-->02468
imap(func,p,q,...)
內(nèi)建函數(shù)map的迭代器版本。
imap(pow,(2,3,10),(5,2,3))-->3291000
starmap(func,seq)
將seq的每個(gè)元素以變長參數(shù)(*args)的形式調(diào)用func。
starmap(pow,[(2,5),(3,2),(10,3)])-->3291000
izip(p,q,...)
內(nèi)建函數(shù)zip的迭代器版本。
izip('ABCD','xy')-->AxBy
izip_longest(p,q,...,fillvalue=None)
izip的取最長序列的版本,短序列將填入fillvalue。
izip_longest('ABCD','xy',fillvalue='-')-->AxByC-D-
tee(it,n)
返回n個(gè)迭代器it的復(fù)制迭代器。
groupby(iterable[,keyfunc])
這個(gè)函數(shù)功能類似于SQL的分組。使用groupby前,首先需要使用相同的keyfunc對iterable進(jìn)行排序,比如調(diào)用內(nèi)建的sorted函數(shù)。然后,groupby返回迭代器,每次迭代的元素是元組(key值,iterable中具有相同key值的元素的集合的子迭代器)。或許看看Python的排序指南對理解這個(gè)函數(shù)有幫助。
groupby([0,0,0,1,1,1,2,2,2])-->(0,(000))(1,(111))(2,(222))
以上內(nèi)容為大家介紹了Python在最短的序列參數(shù)終止時(shí)停止迭代,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。