gpt4 book ai didi

python - 使用 Counter 聚合值

转载 作者:行者123 更新时间:2023-12-02 16:33:23 24 4
gpt4 key购买 nike

有没有一种方法可以使用 Counter 来聚合列表中每个条目的值,而不仅仅是计算条目出现的次数?

例如,如果我有一个列表

from collections import Counter

lst = [
['John', 1],
['James', 2],
['John', 3],
['Andy', 1]
]

我也是

total = Counter(name for name, num in lst)
print(total)

输出将是

Counter({'John': 2, 'James': 1, 'Andy': 1})

这是预期的。我只是想知道是否有办法获得

Counter({'John': 4, 'James': 2, 'Andy': 1})

我知道有很多方法可以做到这一点,但我正在寻找一种使用 Counter 来做到这一点的方法。

最佳答案

为发布的列表理解添加另一层 for 循环

total = Counter(name for name, num in lst for _ in range(num))

print(total)
# Output: Counter({'John': 4, 'James': 2, 'Andy': 1})

关于python - 使用 Counter 聚合值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63160626/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com