python字典包含指定键_python-字典中所有值的总和,其中包含键中的项

使用collections.defaultdict,不需要if-else:

from collections import defaultdict

def get_wins_by_category(team_to_win, category):

d = {'name':0, 'city':1, 'sport':2}

dic = defaultdict(int)

for k, v in team_to_win.items():

dic[k[d[category]]] += v

return dic

...

>>> get_wins_by_category(d, 'city')

defaultdict(, {'Toronto': 34, 'Ottawa': 45})

>>> get_wins_by_category(d, 'sport')

defaultdict(, {'basketball': 31, 'hockey': 48})

>>> get_wins_by_category(d, 'name')

defaultdict(, {'Senators': 45, 'Blues': 21, 'Raptors': 10, 'Leafs': 3})

另一种选择是collections.Counter:

from collections import Counter

def get_wins_by_category(team_to_win, category):

#index each category points to

d = {'name':0, 'city':1, 'sport':2}

dic = Counter()

for k, v in team_to_win.items():

dic[k[d[category]]] += v

return dic

...

>>> get_wins_by_category(d, 'city')

Counter({'Ottawa': 45, 'Toronto': 34})

>>> get_wins_by_category(d, 'sport')

Counter({'hockey': 48, 'basketball': 31})

>>> get_wins_by_category(d, 'name')

Counter({'Senators': 45, 'Blues': 21, 'Raptors': 10, 'Leafs': 3})

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值