python中itertools模組介紹---03

來源:互聯網
上載者:User

標籤:

product(*iterables[,repeat]):

原始碼:

def product(*args,**kwds):    pools=map(tuple,args)*kwds.get("repeat",1)    result=[[]]    for pool in pools:        result=[x+[y] for x in result for y in pool]    for prod in result:        yield tuple(prod)

求iterables的笛卡爾積,repeat指定重複產生序列的次數。如:

>>>a=(1,2)>>>b=(‘a‘,‘b‘)>>>c=product(a,b)>>>c.next()(1,‘a‘)>>>c.next()(1,‘b‘)>>>c.next()(2,‘a‘)>>>c.next()(2,‘b‘)

permutations(iterable[,r]):

建立一個迭代器,返回iterable中所有長度為r的項目序列,如果省略了r,那麼序列的長度與iterable中項目數量先天:返回p中任意取r個元素做排列的元組的迭代器。如:

>>>a=permutations(‘abc‘,2)----->‘ab‘,‘ac‘,‘bc‘,‘ba‘,‘ca‘,‘cb‘ >>>b=permutations(range(2))----->01 10


python中itertools模組介紹---03

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.