python list count equal elements code example
Example 1: count similar values in list python
MyList = ["a", "b", "a", "c", "c", "a", "c"]
return my_dict = {i:MyList.count(i) for i in MyList}
{'a': 3, 'c': 3, 'b': 1}
from collections import Counter
return my_dict = dict(Counter(MyList))
{'a': 3, 'c': 3, 'b': 1}
Example 2: list count frequency python
import collections
a = [1,1,1,1,2,2,2,2,3,3,4,5,5]
counter=collections.Counter(a)
print(counter)
print(counter.values())
print(counter.keys())
print(counter.most_common(3))
Example 3: python how to count all elements in a list
List = ["Elephant", "Snake", "Penguin"]
print(len(List))