python3 统计一个list的词频【附代码】

今天爱分享给大家带来 python3 统计一个list的词频【附代码】,希望能帮助到大家。

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

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

输出为:

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

人已赞赏
Python

geojson shp esrijson 相互转换【附代码】

2020-11-14 22:28:45

Python

python3如何用 json读取和写入带中文的文件【附代码】

2020-11-14 22:58:15

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
'); })();