python容器数据类型collections中的Counter类使用python容器数据类型collections中的Counter类
python容器数据类型collections中的Counter类导入Counter——字典的子类,提供了可哈希对象的计数功能from collections import Counter定义方式# 定义一个空的Counterc = Counter()print(type(c))# 方式一c = Counter("abcdefgabcdefabcdeabcdabc")print(c)# 方式二c = Counter({'a': 3, "b": 4, &qu