gpt4 book ai didi

python - 获取重复值并将其整数值相加

转载 作者:行者123 更新时间:2023-11-30 22:59:20 25 4
gpt4 key购买 nike

我从中得到一个列表:

items = [[slot['accountLabelType'], slot['totalPrice']] for slot in self.data]

这会产生一个如下所示的列表:

['Transport', 888]

现在,在此列表中存在重复项,我想要做的是识别重复项并将其值相加。我读到您可以使用 collections.Counter 在列表中找到重复项,我正在尝试这样做:

c = [y for y in Counter(self.data) if y > 1]

但我收到错误

类型错误:不可散列的类型:“列表”

最佳答案

您可以使用defaultdict :

from collections import defaultdict

c = defaultdict(int)
for slot in self.data:
c[slot['accountLabelType']] += slot['totalPrice']

关于python - 获取重复值并将其整数值相加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35794724/

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