编写一个能统计文档中词语词频小程序
时间: 2024-02-22 11:58:56 浏览: 112
Python编写的词频统计工具
5星 · 资源好评率100%
好的,以下是Python代码实现:
```python
import re
from collections import Counter
# 读取文件
with open('text.txt', 'r', encoding='utf-8') as f:
content = f.read()
# 提取词语
words = re.findall(r'[\u4e00-\u9fa5]+', content)
# 统计词频
word_freq = Counter(words)
# 输出词频最高的15个词语
for word, freq in word_freq.most_common(15):
print(word, freq)
```
注:需要将代码中的文件名改为实际的文件名,并确保文件与代码在同一目录下。
阅读全文