python 词频统计
时间: 2023-11-01 09:57:35 浏览: 80
Python编写的词频统计工具
5星 · 资源好评率100%
你可以使用Python中的collections模块来进行词频统计。下面是一个简单的示例代码:
```python
from collections import Counter
def word_frequency(text):
# 将文本拆分成单词列表
words = text.split()
# 使用Counter来统计单词出现的频率
frequency = Counter(words)
return frequency
# 示例文本
text = "I love to code in Python. Python is a great programming language."
# 统计词频
result = word_frequency(text)
# 打印结果
for word, count in result.items():
print(f"{word}: {count}")
```
运行上述代码,你将得到每个单词及其出现次数的统计结果。请将`text`变量替换为你要进行词频统计的实际文本。
阅读全文