python全部英文词频统计
时间: 2023-05-21 11:03:57 浏览: 171
基于 python 实现英文文章的词频统计, 并画出词频图
可以使用Python内置的collections模块中的Counter类来实现英文词频统计。以下是示例代码:
```python
import collections
with open('input.txt', 'r') as f:
words = f.read().split()
word_counts = collections.Counter(words)
for word, count in word_counts.most_common():
print(word, count)
```
其中,'input.txt'是包含英文文本的文件名,可以根据实际情况修改。运行代码后,会输出每个单词及其出现次数,按照出现次数从高到低排序。
阅读全文