专注美女

文章
6
资源
0
加入时间
2年10月24天

python Counter计数

# -*- coding: utf-8 -*-from collections import Counter# Counter的本质是一个特殊的dict,它继承了dict类,因此它可以完全调用dict所支持的方法。# 创建空的Counter对象c1 = Counter()print(c1['pp']) # 访问Counter中不存在的元素,输出 0c2 = Counter('h...