Counter函数
时间: 2023-12-10 21:03:24 浏览: 63
反比例函数
`Counter`函数是Python中的一个内置函数,用来统计可迭代对象中每个元素出现的次数,并以字典的形式返回结果。例如:
```python
from collections import Counter
lst = ['apple', 'banana', 'apple', 'orange', 'banana', 'pear', 'pear', 'pear']
count = Counter(lst)
print(count)
```
输出结果为:
```
Counter({'pear': 3, 'apple': 2, 'banana': 2, 'orange': 1})
```
可以看到,`Counter`函数返回的是一个字典,其中字典的键是可迭代对象中的元素,值是该元素在可迭代对象中出现的次数。在上面的例子中,'pear'出现了3次,'apple'和'banana'各出现了2次,'orange'出现了1次。
阅读全文