Python 中的collections 模組

來源:互聯網
上載者:User

標籤:collections deque counter defaultdict

這個模組中實現了一些類,非常靈活。可以用於替代python 內建的dict 、list 、tuple 、set 類型。並且一些功能是這些內建類型所不存在的。

在網路上找了一些資料,重點說說collections 模組中的 deque 、Counter、defaultdict 類


1、class deque
類似於python 內建的 list ,不過它是一個雙向的list。可以在任意一頭進行操作

help(collections.deque)

class deque(__builtin__.object)
  deque([iterable[, maxlen]]) --> deque object

deque 的參數應該時一個iterable.

Example:

In [1]: import collectionsIn [2]: d = collections.deque(‘abcdef‘)In [3]: print ddeque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘])In [4]: d.append(‘mm‘)         #追加元素In [5]: print ddeque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘mm‘])In [6]: d.appendleft(‘gg‘)   #從左追加元素In [7]: print ddeque([‘gg‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘mm‘])In [8]: d.pop()    # pop 一個元素Out[8]: ‘mm‘In [9]: print ddeque([‘gg‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘])In [10]: d.popleft() #從左pop 一個元素Out[10]: ‘gg‘In [11]: print ddeque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘])In [12]: d.extend(‘xyz‘)   #擴充In [13]: print ddeque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘x‘, ‘y‘, ‘z‘])In [14]: d.extendleft(‘123‘)  #左擴充In [15]: print ddeque([‘3‘, ‘2‘, ‘1‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘x‘, ‘y‘, ‘z‘])In [16]: d.reverse() #反轉In [17]: print ddeque([‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘])In [22]: d.extend(‘1111‘)In [23]: d.count(‘1‘)      #統計一個元素的個數Out[23]: 5In [24]: print ddeque([‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘1‘, ‘1‘, ‘1‘])In [27]: d.rotate(2)  #右旋轉In [28]: print ddeque([‘1‘, ‘1‘, ‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘1‘])In [29]: d.rotate(-2) #左旋轉In [30]: print ddeque([‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘1‘, ‘1‘, ‘1‘])In [31]: d.clear() #清空In [32]: print ddeque([])


另外在deque 函數中發現一個maxlen參數。主要是限制這個雙向list 的 大小

In [34]: d = collections.deque(xrange(10),5)In [35]: print ddeque([5, 6, 7, 8, 9], maxlen=5)In [36]:


本文出自 “學習筆記” 部落格,請務必保留此出處http://unixman.blog.51cto.com/10163040/1651973

Python 中的collections 模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.