jieba分词及中文词频统计
时间: 2023-12-11 08:31:23 浏览: 96
以下是使用jieba分词进行中文词频统计的示例代码:
```python
import jieba
from collections import Counter
# 待分词的文本
text = "今天天气真好,我想出去玩。"
# 使用jieba进行分词
words = jieba.cut(text)
# 统计词频
word_counts = Counter(words)
# 输出词频统计结果
for word, count in word_counts.items():
print(word, count)
```
输出结果为:
```
今天 1
天气 1
真好 1
, 1
我想 1
出去 1
玩 1
。 1
```
阅读全文