python3 统计一个list的词频

网友投稿 273 2022-08-25

python3 统计一个list的词频

做统计机器学习经常需要统计,这里我来分享一下怎样统计一个list里面每个字符串的频率:

from collections import Counterword_count=['I','am','from','China',',','I','Love','my','country','!','!','!']counter = Counter(word_count)dictionary=dict(counter)# get to k most frequently occuring wordsk=10res=counter.most_common(k)print(res)

输出为:

[('!', 3), ('I', 2), ('am', 1), ('from', 1), ('China', 1), (',', 1), ('Love', 1), ('my', 1), ('country', 1)]

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:ubuntu 18.04安装pyrouge No such file or directory: 'yourpath/.pyrouge/settings.ini'
下一篇:python3 BD09ll转换WGS84坐标系,入门教程
相关文章

 发表评论

暂时没有评论,来抢沙发吧~