python列表中各种元素的数量

如果python列表里有许多元素,并且这些元素有重复的,那么如何判断一个列表中各个元素的数量~~~~

my_list=['a:1','a:1','b:3']
from collections import Counter
def counter(my_list):
    return Counter(my_list)
counter(my_list)

结果:
Counter({'a:1': 2, 'b:3': 1})

你可能感兴趣的:(python列表中各种元素的数量)