Cuenta con frecuencia en Python
freq = {}
for item in my_list:
if (item in freq):
freq[item] += 1
else:
freq[item] = 1
Amused Albatross