简体   繁体   中英

Python update a value in a list of dictionaries from another list of dictionaries

If given two list of dictionaries (score_list and update_list) below, how do I update score_list from the list of dictionaries from update_list?

score_list = [{'id': 1, 'score': 123}, {'id': 2, 'score': 234}, {'id': 3, 'score': 345}]

update_list = [{'id': 1, 'score': 500}, {'id': 3, 'score': 300}]

# return this
score_list = [{'id': 1, 'score': 500}, {'id': 2, 'score': 234}, {'id': 3, 'score': 300}]

I highly recommend using a mapping when you have a unique key to match:

update_mapping = {d['id']: d for d in update_list}
score_list = [update_mapping.get(d['id'], d) for d in score_list]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM