我有一个看起来像的列表:
my_list = ['singapore','india','united states','london','paris','india','london','china','singapore','singapore','new york']
现在我想要Counter[dict]
这个列表中唯一的特定单词
Counter(my_list) gives me the following : Counter({'singapore': 3, 'india': 2, 'london': 2, 'united states': 1, 'paris': 1, 'china': 1, 'new york': 1})
但是有没有办法从列表中创建一个仅包含特定单词的计数器,例如 Counter of words in['london','india','singapore']
最快的方法是什么?我的清单很大。
我尝试了什么:my_list.count('london')
例如。但是有没有更快的方法来实现这一点?
慕森王
相关分类