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词频统计的主要内容,如果未能解决你的问题,请参考以下文章

使用SparkSQL编写wordCount的词频统计

1.英文词频统2.中文词频统计

Spark WordCount 文档词频计数

Spark--wordcount(词频降序)

在Hadoop上用Python实现WordCount

WordCount优化——单词及词频统计