from collections import counter
时间: 2023-05-01 15:00:29 浏览: 142
简单掌握Python的Collections模块中counter结构的用法
"collections" 是 Python 标准库中的一个模块,它提供了一些 Python 集合类型的实现,如列表,字典等。"counter" 是 "collections" 模块中的一个类,它可以帮助我们统计一个序列中每个元素的出现次数。
"from collections import counter" 这句话的意思是,从 "collections" 模块中导入 "counter" 类。
阅读全文