Answers for "how to count occurence of all the elements in a list using dict in python"

3

freq count in python

freq = {} 
    for item in my_list: 
        if (item in freq): 
            freq[item] += 1
        else: 
            freq[item] = 1
Posted by: Guest on July-21-2020

Code answers related to "how to count occurence of all the elements in a list using dict in python"

Python Answers by Framework

Browse Popular Code Answers by Language