c语言sscanf函数的用法是什么
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小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~