比较python中两个字典列表

问题描述 投票:0回答:3

我有两个词典列表,分别命名为category和sub_category。

category = [{'cat_id':1,'total':300,'from':250},{'cat_id':2,'total':100,'from':150}]
sub_category = [{'id':1,'cat_id':1,'charge':30},{'id':2,'cat_id':1,'charge':20},{'id':3,'cat_id':2,'charge':30}]

如果在charge相等的情况下0中的total >= from的值,我想在sub_category中将category的值更改为cat_id

预期结果是:

sub_category = [{'id':1,'cat_id':1,'charge':0},{'id':2,'cat_id':1,'charge':0},{'id':3,'cat_id':2,'charge':30}]

我设法使用此方法获得了结果

for sub in sub_category:
    for cat in category:
        if cat['cat_id'] == sub['cat_id']:
            if cat['total'] >= cat['from']:
                sub['charge']=0

但是我想知道更好的方法。任何帮助将不胜感激。

python list dictionary
3个回答
1
投票

这是一种方法。将类别更改为dict即可轻松循环播放。

Ex:

category = [{'cat_id':1,'total':300,'from':250},{'cat_id':2,'total':100,'from':150}]
sub_category = [{'id':1,'cat_id':1,'charge':30},{'id':2,'cat_id':1,'charge':20},{'id':3,'cat_id':2,'charge':30}]

category = {i.pop('cat_id'): i for i in category}

for i in sub_category:
    if i['cat_id'] in category:
        if category[i['cat_id']]['total'] >= category[i['cat_id']]['from']:
            i['charge'] = 0
print(sub_category)  

输出:

[{'cat_id': 1, 'charge': 0, 'id': 1},
 {'cat_id': 1, 'charge': 0, 'id': 2},
 {'cat_id': 2, 'charge': 30, 'id': 3}]

1
投票

尝试一下:

我认为我的做法在某些情况下可能不适合。我喜欢使用列表理解功能。

category = [{'cat_id':1,'total':300,'from':250},{'cat_id':2,'total':100,'from':150}]
sub_category = [{'id':1,'cat_id':1,'charge':30},{'id':2,'cat_id':1,'charge':20},{'id':3,'cat_id':2,'charge':30}]
print [sub_cat if cat['cat_id'] == sub_cat['id'] and cat['total'] >= cat['from'] and not sub_cat.__setitem__('charge','0') else sub_cat for sub_cat in sub_category for cat in category]

Result:[{'cat_id': 1, 'charge': '0', 'id': 1}, {'cat_id': 1, 'charge': '0', 'id': 1}, {'cat_id': 1, 'charge': 20, 'id': 2}, {'cat_id': 1, 'charge': 20, 'id': 2}, {'cat_id': 2, 'charge': 30, 'id': 3}, {'cat_id': 2, 'charge': 30, 'id': 3}]

1
投票

您可以使用这种方法解决您的问题:

target_categories = set([elem.get('cat_id') for elem in category if elem.get('total', 0) > elem.get('from', 0)])
if None in target_categories:
    target_categories.remove(None) # if there's no cat_id in one of the categories we will get None in target_categories. Remove it.
for elem in sub_category:
    if elem.get('cat_id') in target_categories:
        elem.update({'charge': 0})

与另一种方法的时间比较:

import numpy as np

size = 5000000
np.random.seed()

cat_ids = np.random.randint(50, size=(size,))
totals = np.random.randint(500, size=(size,))
froms = np.random.randint(500, size=(size,))

category = [{'cat_id': cat_id, 'total': total, 'from': from_} for cat_id, total, from_ in zip(cat_ids, totals, froms)]
sub_category = [{'id': 1, 'cat_id': np.random.randint(50), 'charge': np.random.randint(100)} for i in range(size)]

%%time
target_categories = set([elem.get('cat_id') for elem in category if elem.get('total', 0) > elem.get('from', 0)])
if None in target_categories:
    target_categories.remove(None) # if there's no cat_id in one of the categories we will get None in target_categories. Remove it.
for elem in sub_category:
    if elem.get('cat_id') in target_categories:
        elem.update({'charge': 0})
# Wall time: 3.47 s

%%time
category = {i.pop('cat_id'): i for i in category}
for i in sub_category:
    if i['cat_id'] in category:
        if category[i['cat_id']]['total'] >= category[i['cat_id']]['from']:
            i['charge'] = 0
# Wall time: 5.73 s
© www.soinside.com 2019 - 2024. All rights reserved.