Given a list iterate it and count the occurrence of each element and create a dictionary to show the count of each element code example
Example 1: freq count in python
freq = {}
for item in my_list:
if (item in freq):
freq[item] += 1
else:
freq[item] = 1
Example 2: how to find no of times a elements in list python
thislist = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5)
x = thislist.count(5)
print(x)