Python | Merge Python key values to list
Sometimes, while working with Python, we might have a problem in which we need to get the values of dictionary from several dictionaries to be encapsulated into one dictionary. This type of problem can be common in domains in which we work with relational data like in web developments. Let’s discuss certain ways in which this problem can be solved.
Method #1 : Using setdefault() + loop
This task can be performed using a nested loop and fetching each element of dictionary and creating a new list to new key or appending the values in case of similar key occurrence.
# Python3 code to demonstrate working of # Merge Python key values to list # Using setdefault() + loop # Initialize list test_list = [{'gfg' : 2, 'is' : 4, 'best' : 6}, {'it' : 5, 'is' : 7, 'best' : 8}, {'CS' : 10}] # Printing original list print("The original list is : " + str(test_list)) # using setdefault() + loop # Merge Python key values to list res = {} for sub in test_list: for key, val in sub.items(): res.setdefault(key, []).append(val) # printing result print("The merged values encapsulated dictionary is : " + str(res)) |
The original list is : [{‘is’: 4, ‘gfg’: 2, ‘best’: 6}, {‘it’: 5, ‘is’: 7, ‘best’: 8}, {‘CS’: 10}]
The merged values encapsulated dictionary is : {‘is’: [4, 7], ‘it’: [5], ‘gfg’: [2], ‘CS’: [10], ‘best’: [6, 8]}
Method #2 : Using list comprehension + dictionary comprehension
The combination of above can be used to perform this particular task. This offers a one liner that can be employed for this task. Even though it might be efficient on performance domain.
# Python3 code to demonstrate working of # Merge Python key values to list # Using list comprehension + dictionary comprehension # Initialize list test_list = [{'gfg' : 2, 'is' : 4, 'best' : 6}, {'it' : 5, 'is' : 7, 'best' : 8}, {'CS' : 10}] # Printing original list print("The original list is : " + str(test_list)) # using list comprehension + dictionary comprehension # Merge Python key values to list res = {key: list({sub[key] for sub in test_list if key in sub}) for key in {key for sub in test_list for key in sub}} # printing result print("The merged values encapsulated dictionary is : " + str(res)) |
The original list is : [{‘is’: 4, ‘gfg’: 2, ‘best’: 6}, {‘it’: 5, ‘is’: 7, ‘best’: 8}, {‘CS’: 10}]
The merged values encapsulated dictionary is : {‘is’: [4, 7], ‘it’: [5], ‘gfg’: [2], ‘CS’: [10], ‘best’: [6, 8]}
Recommended Posts:
- Python | Merge list of tuple into list by joining the strings
- Python | Merge List with common elements in a List of Lists
- Python | List value merge in dictionary
- Python | Merge list elements
- Python | Remove all values from a list present in other list
- Python | Merge two lists into list of tuples
- Python | Selective Merge list every Nth position
- Python | Ways to merge strings into list
- Python | Merge first and last elements separately in a list
- Python | Merge two list of lists according to first element
- Python | Sort the values of first list using second list
- Python | Filter even values from a list
- Python | Check if all the values in a list are less than a given value
- Python | Get unique values from a list
- Python | Remove None values from list
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



