How to count frequency of each element in an array in Python

1 Answer

0 votes
arr = [4, 1, 2, 8, 9, 5, 5, 1, 7, 8, 8]
frequency = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]

for i in range(0, len(arr)):  
    frequency[arr[i]] += 1

for i in range(0, 10):  
    if (frequency[i]):
        print(i,  ": - " + str(frequency[i]), " times")

           
   
   
'''
run:

1 : - 2  times
2 : - 1  times
4 : - 1  times
5 : - 2  times
7 : - 1  times
8 : - 3  times
9 : - 1  times

'''

 



answered Jul 29, 2021 by avibootz

Related questions

1 answer 114 views
1 answer 108 views
1 answer 232 views
1 answer 224 views
1 answer 183 views
1 answer 229 views
1 answer 166 views
...