如何用Python软件中的jieba分词工具进行词频统计
时间: 2024-05-15 09:17:18 浏览: 78
python使用jieba进行分词统计
5星 · 资源好评率100%
你可以使用Python的collections库来实现jieba分词工具的词频统计。以下是一个简单的示例代码:
```python
import jieba
from collections import Counter
text = "这是一个测试句子,测试统计词频。"
words = jieba.cut(text)
freq = Counter(words)
print(freq.most_common(10))
```
输出结果将显示前10个出现频率最高的词。
阅读全文