我正在使用集合计数器来计算列表中的每个字符串(它们可能不是唯一的)。问题是现在我无法访问字典,我不知道为什么。
我的代码是:
from collections import Counter
result1 = Counter(list_final1) #to count strings inside list
如果我打印 result1,输出例如:
Counter({'BAM': 44, 'CCC': 20, 'APG': 14, 'MBI': 11, 'BAV': 10})
例如,要访问数字 44,我希望使用 Counter['BAM']
但是上面的这个不起作用,我得到了错误:
print (Counter['BAM'])
TypeError: 'type' object is not subscriptable
我究竟做错了什么?非常感谢。