a=['A','B','C','A','D','E','W','A','B']
b=collections.Counter(a) # 可以统计a中的各个元素出现的次数print(b)print(b['B'])