例如,我需要计算一个单词在列表中出现的次数,不是按频率排序,而是按照单词出现的顺序,即插入顺序。
from collections import Counter
words = ['oranges', 'apples', 'apples', 'bananas', 'kiwis', 'kiwis', 'apples']
c = Counter(words)
print(c)
所以代替:
{'apples': 3, 'kiwis': 2, 'bananas': 1, 'oranges': 1}
我宁愿得到:
{'oranges': 1, 'apples': 3, 'bananas': 1, 'kiwis': 2}
而且我真的不需要这个
Counter
方法,任何会产生正确结果的方法对我来说都是可以的。 最佳答案
您可以使用使用 collections.Counter
和 collections.OrderedDict
的 recipe :
from collections import Counter, OrderedDict
class OrderedCounter(Counter, OrderedDict):
'Counter that remembers the order elements are first encountered'
def __repr__(self):
return '%s(%r)' % (self.__class__.__name__, OrderedDict(self))
def __reduce__(self):
return self.__class__, (OrderedDict(self),)
words = ["oranges", "apples", "apples", "bananas", "kiwis", "kiwis", "apples"]
c = OrderedCounter(words)
print(c)
# OrderedCounter(OrderedDict([('oranges', 1), ('apples', 3), ('bananas', 1), ('kiwis', 2)]))
关于python - 如何获得项目的计数字典但保持它们出现的顺序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23747564/