python 内置模块collections

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 内置模块collections相关的知识,希望对你有一定的参考价值。

1、namedtuple

from collections import namedtuple

websites = [
(‘Sohu‘, ‘http://www.google.com/‘, u‘张朝阳‘),
(‘Sina‘, ‘http://www.sina.com.cn/‘, u‘王志东‘),
(‘163‘, ‘http://www.163.com/‘, u‘丁磊‘)
]

Website = namedtuple(‘Website‘, [‘name‘, ‘url‘, ‘founder‘])
mywebsite = Website(‘ading‘, ‘http://blog.65535.fun‘, u‘林天来‘)
print(mywebsite.name)
print(mywebsite.url)
print(mywebsite.founder)
for website in websites:
website = Website._make(website)
print website

2、deque
In [1]: from collections import deque

In [2]: mydeque = deque(maxlen=10)

In [3]: mydeque.maxlen
Out[3]: 10

In [4]: mydeque.append(1)

In [5]: mydeque.append(10)

In [6]: mydeque
Out[6]: deque([1, 10])

In [7]: mydeque.appendleft(‘a‘)

In [8]: mydeque.appendleft(‘b‘)

In [9]: mydeque
Out[9]: deque([‘b‘, ‘a‘, 1, 10])

In [10]: mydeque.pop()
Out[10]: 10

In [11]: mydeque
Out[11]: deque([‘b‘, ‘a‘, 1])

In [12]: mydeque.popleft()
Out[12]: ‘b‘

In [13]: mydeque
Out[13]: deque([‘a‘, 1])

deque 还有常用的方法 :copy,reverse, insert, clear

以上是关于python 内置模块collections的主要内容,如果未能解决你的问题,请参考以下文章

Python之内置模块(datetime与collections)

python 内置模块collections

python基础语法12 内置模块 json,pickle,collections,openpyxl模块

Python collections 模块用法举例

Python模块: collections

python(43):collections模块