python词频统计
Posted fight139
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python词频统计相关的知识,希望对你有一定的参考价值。
1.jieba 库 -中文分词库
words = jieba.lcut(str) --->列表,词语
count = {}
for word in words:
if len(word)==1:
continue
else:
count[word] = count.get(word,0)+1
函数
jieba.lcut() 分词,中文
2. 英文分词库
str = "ab sld dd"
str.split()
以上是关于python词频统计的主要内容,如果未能解决你的问题,请参考以下文章