python菜鸟教程 | wordcount词频统计
Posted AI算法攻城狮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python菜鸟教程 | wordcount词频统计相关的知识,希望对你有一定的参考价值。
python实现wordcount词频统计
class Solution(object):
def singleNumber(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
dict={}
for i in nums:
if i in dict.keys():
dict[i] = dict[i]+1
else:
dict[i] = 1
for key, value in dict.items():
print(str(key)+"出现了"+str(value)+"次")
if __name__ == '__main__':
array=[2,2,3,2]
solution=Solution()
print(solution.singleNumber(array))
以上是关于python菜鸟教程 | wordcount词频统计的主要内容,如果未能解决你的问题,请参考以下文章