2.2 collection 模块

2.2.1 定义命名元祖

2.2 collection 模块_第1张图片

 2.2 collection 模块_第2张图片

2.2.2 定义双端队列

2.2 collection 模块_第3张图片

2.2 collection 模块_第4张图片

2.2.3 定义有序的字典

2.2 collection 模块_第5张图片

2.2.4 定义有默认值的字典

2.2 collection 模块_第6张图片

 2.2.5 计数器

from collections import Counter

li = [2, 5, 3, 4, 1, 8, 1, 2, 6, 6, 1, 5, 1, 5]

c = Counter(li)
print(c)  # Counter({1: 4, 5: 3, 2: 2, 6: 2, 3: 1, 4: 1, 8: 1})

print(c.most_common(3))  # [(1, 4), (5, 3), (2, 2)]

 

 

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/shijieli/p/10339037.html

你可能感兴趣的:(2.2 collection 模块)