collections模块

collections模块

这个模块实现了特定目标的容器,以提供Python标准内建容器 dict、list、set、tuple 的替代选择。

  • Counter:字典的子类,提供了可哈希对象的计数功能
  • defaultdict:字典的子类,提供了一个工厂函数,为字典查询提供了默认值
  • OrderedDict:字典的子类,保留了他们被添加的顺序
  • namedtuple:创建命名元组子类的工厂函数
  • deque:类似列表容器,实现了在两端快速添加(append)和弹出(pop)
  • ChainMap:类似字典的容器类,将多个映射集合到一个视图里面

Counter

Counter是一个dict子类,主要是用来对你访问的对象的频率进行计数。
常用方法:

  • elements():返回一个迭代器,每个元素重复计算的个数,如果一个元素的计数小于1,就会被忽略。
  • most_common([n]):返回一个列表,提供n个访问频率最高的元素和计数
  • subtract([iterable-or-mapping]):从迭代对象中减去元素,输入输出可以是0或者负数
  • update([iterable-or-mapping]):从迭代对象计数元素或者从另一个 映射对象 (或计数器) 添加。
 1 # 统计字符出现的次数
 2 >>> import collections
 3 >>> collections.Counter('hello world')
 4 Counter({'l': 3, 'o': 2, 'h': 1, 'e': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1})
 5 # 统计单词数
 6 >>> collections.Counter('hello world hello world hello nihao'.split())
 7 Counter({'hello': 3, 'world': 2, 'nihao': 1})
 8 常用的方法:
 9 
10 >>> c = collections.Counter('hello world hello world hello nihao'.split())
11 >>> c
12 Counter({'hello': 3, 'world': 2, 'nihao': 1})
13 # 获取指定对象的访问次数,也可以使用get()方法
14 >>> c['hello']
15 3
16 >>> c = collections.Counter('hello world hello world hello nihao'.split())
17 # 查看元素
18 >>> list(c.elements())
19 ['hello', 'hello', 'hello', 'world', 'world', 'nihao']
20 # 追加对象,或者使用c.update(d)
21 >>> c = collections.Counter('hello world hello world hello nihao'.split())
22 >>> d = collections.Counter('hello world'.split())
23 >>> c
24 Counter({'hello': 3, 'world': 2, 'nihao': 1})
25 >>> d
26 Counter({'hello': 1, 'world': 1})
27 >>> c + d
28 Counter({'hello': 4, 'world': 3, 'nihao': 1})
29 # 减少对象,或者使用c.subtract(d)
30 >>> c - d
31 Counter({'hello': 2, 'world': 1, 'nihao': 1})
32 # 清除
33 >>> c.clear()
34 >>> c
35 Counter()

defaultdict

collections.defaultdict(default_factory)为字典的没有的key提供一个默认的值。参数应该是一个函数,当没有参数调用时返回默认值。如果没有传递任何内容,则默认为None。

1 >>> d = collections.defaultdict()
2 >>> d
3 defaultdict(None, {})
4 >>> e = collections.defaultdict(str)
5 >>> e
6 defaultdict(<class 'str'>, {})

defaultdict的一个典型用法是使用其中一种内置类型(如str、int、list或dict)作为默认工厂,因为这些内置类型在没有参数调用时返回空类型。

 1 >>> d = collections.defaultdict(str)
 2 >>> d
 3 defaultdict(<class 'str'>, {})
 4 >>> d['hello']
 5 ''
 6 >>> d
 7 defaultdict(<class 'str'>, {'hello': ''})
 8 # 普通字典调用不存在的键时,将会抛异常
 9 >>> e = {}
10 >>> e['hello']
11 Traceback (most recent call last):
12   File "<stdin>", line 1, in <module>
13 KeyError: 'hello'

使用int作为default_factory的例子:

 1 >>> from collections import defaultdict
 2 >>> fruit = defaultdict(int)
 3 >>> fruit['apple'] += 2 
 4 >>> fruit
 5 defaultdict(<class 'int'>, {'apple': 2})
 6 >>> fruit
 7 defaultdict(<class 'int'>, {'apple': 2})
 8 >>> fruit['banana']  # 没有对象时,返回0
 9 0
10 >>> fruit
11 defaultdict(<class 'int'>, {'apple': 2, 'banana': 0})

使用list作为default_factory的例子:

1 >>> s = [('NC', 'Raleigh'), ('VA', 'Richmond'), ('WA', 'Seattle'), ('NC', 'Asheville')]
2 >>> d = collections.defaultdict(list)
3 >>> for k,v in s:
4 ...      d[k].append(v)
5 ... 
6 >>> d
7 defaultdict(<class 'list'>, {'NC': ['Raleigh', 'Asheville'], 'VA': ['Richmond'], 'WA': ['Seattle']})

OrderedDict

Python字典中的键的顺序是任意的:它们不受添加的顺序的控制。
collections.OrderedDict类提供了保留他们添加顺序的字典对象。

1 >>> from collections import OrderedDict
2 >>> o = OrderedDict()
3 >>> o['key1'] = 'value1'
4 >>> o['key2'] = 'value2'
5 >>> o['key3'] = 'value3'
6 >>> o
7 OrderedDict([('key1', 'value1'), ('key2', 'value2'), ('key3', 'value3')])

如果在已经存在的key上添加新的值,将会保留原来的key的位置,然后覆盖value值。

1 >>> o['key1'] = 'value5'
2 >>> o
3 OrderedDict([('key1', 'value5'), ('key2', 'value2'), ('key3', 'value3')])

namedtuple

三种定义命名元组的方法:第一个参数是命名元组的构造器(如下的:Person,Human)

1 >>> from collections import namedtuple
2 >>> Person = namedtuple('Person', ['age', 'height', 'name'])
3 >>> Human = namedtuple('Human', 'age, height, name')
4 >>> Human2 = namedtuple('Human2', 'age height name')

实例化命令元组

 1 >>> tom = Person(30,178,'Tom')
 2 >>> jack = Human(20,179,'Jack')
 3 >>> tom
 4 Person(age=30, height=178, name='Tom')
 5 >>> jack
 6 Human(age=20, height=179, name='Jack')
 7 >>> tom.age #直接通过  实例名+.+属性 来调用
 8 30
 9 >>> jack.name
10 'Jack'

deque

collections.deque返回一个新的双向队列对象,从左到右初始化(用方法 append()) ,从 iterable (迭代对象) 数据创建。如果 iterable 没有指定,新队列为空。
collections.deque队列支持线程安全,对于从两端添加(append)或者弹出(pop),复杂度O(1)。
虽然list对象也支持类似操作,但是这里优化了定长操作(pop(0)、insert(0,v))的开销。
如果 maxlen 没有指定或者是 None ,deques 可以增长到任意长度。否则,deque就限定到指定最大长度。一旦限定长度的deque满了,当新项加入时,同样数量的项就从另一端弹出。
支持的方法:

  • append(x):添加x到右端
  • appendleft(x):添加x到左端
  • clear():清楚所有元素,长度变为0
  • copy():创建一份浅拷贝
  • count(x):计算队列中个数等于x的元素
  • extend(iterable):在队列右侧添加iterable中的元素
  • extendleft(iterable):在队列左侧添加iterable中的元素,注:在左侧添加时,iterable参数的顺序将会反过来添加
  • index(x[,start[,stop]]):返回第 x 个元素(从 start 开始计算,在 stop 之前)。返回第一个匹配,如果没找到的话,升起 ValueError 。
  • insert(i,x):在位置 i 插入 x 。注:如果插入会导致一个限长deque超出长度 maxlen 的话,就升起一个 IndexError 。
  • pop():移除最右侧的元素
  • popleft():移除最左侧的元素
  • remove(value):移去找到的第一个 value。没有抛出ValueError
  • reverse():将deque逆序排列。返回 None 。
  • maxlen:队列的最大长度,没有限定则为None。
 1 >>> from collections import deque
 2 >>> d = deque(maxlen=10)
 3 >>> d
 4 deque([], maxlen=10)
 5 >>> d.extend('python')
 6 >>> [i.upper() for i in d]
 7 ['P', 'Y', 'T', 'H', 'O', 'N']
 8 >>> d.append('e')
 9 >>> d.appendleft('f')
10 >>> d
11 deque(['f', 'p', 'y', 't', 'h', 'o', 'n', 'e'], maxlen=10)

ChainMap

一个 ChainMap 将多个字典或者其他映射组合在一起,创建一个单独的可更新的视图。 如果没有 maps 被指定,就提供一个默认的空字典 。ChainMap是管理嵌套上下文和覆盖的有用工具。

 1 >>> from collections import ChainMap
 2 >>> d1 = {'apple':1,'banana':2}
 3 >>> d2 = {'orange':2,'apple':3,'pike':1}
 4 >>> combined_d = ChainMap(d1,d2)
 5 >>> reverse_combind_d = ChainMap(d2,d1)
 6 >>> combined_d 
 7 ChainMap({'apple': 1, 'banana': 2}, {'orange': 2, 'apple': 3, 'pike': 1})
 8 >>> reverse_combind_d
 9 ChainMap({'orange': 2, 'apple': 3, 'pike': 1}, {'apple': 1, 'banana': 2})
10 >>> for k,v in combined_d.items():
11 ...      print(k,v)
12 ... 
13 pike 1
14 apple 1
15 banana 2
16 orange 2
17 >>> for k,v in reverse_combind_d.items():
18 ...      print(k,v)
19 ... 
20 pike 1
21 apple 3
22 banana 2
23 orange 2
posted @ 2021-11-25 16:34  XX_Bb  阅读(30)  评论(0编辑  收藏  举报