Answers for "Create a list iterate it and count the occurrence of each element and create a dictionary to show the count of each element"

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 "Create a list iterate it and count the occurrence of each element and create a dictionary to show the count of each element"

Python Answers by Framework

Browse Popular Code Answers by Language