python统计列表中词频
时间: 2023-09-26 21:09:11 浏览: 101
统计文本词频并输出为Excel表格形式——Python实现
5星 · 资源好评率100%
可以使用Python中的collections模块来统计列表中每个元素出现的次数。具体实现可以使用Counter类。
示例代码如下:
```python
from collections import Counter
my_list = ["apple", "banana", "apple", "cherry", "banana", "apple"]
word_count = Counter(my_list)
print(word_count)
```
输出结果:
```
Counter({'apple': 3, 'banana': 2, 'cherry': 1})
```
其中,Counter函数返回一个字典,键为列表中的元素,值为该元素在列表中出现的次数。
阅读全文