Python - Nested dictionary Combinations
Last Updated :
29 Mar, 2023
Sometimes, while working with Python dictionaries, we can have a problem in which we need to construct all the combination of dictionary keys with different values. This problem can have application in domains such as gaming and day-day programming. Lets discuss certain way in which we can perform this task.
Input : test_dict = {'gfg': {'is' : [6], 'for' : [10], 'best': [4]}} Output : {'gfg0': {'for': 10, 'best': 4, 'is': 6}} Input : test_dict = {'gfg': {'best' : [10]}} Output : {'gfg0': {'best': 10}}
Method : Using product() + dictionary comprehension + zip() The combination of above functions can be used to solve this problem. In this, we extract all possible combinations using product, zip() performs the task of pairing keys to values filtered and dictionary comprehension is used to store all the constructed dictionaries.
Python3
# Python3 code to demonstrate working of
# Nested dictionary Combinations
# Using product() + dictionary comprehension + zip()
from itertools import product
# initializing dictionary
test_dict = {'gfg': {'is' : [6, 7, 8], 'best': [1, 9, 4]}}
# printing original dictionary
print("The original dictionary : " + str(test_dict))
# Nested dictionary Combinations
# Using product() + dictionary comprehension + zip()
res = { key + str(j) : dict(zip(val.keys(), k))
for key, val in test_dict.items()
for j, k in enumerate(product(*val.values()))}
# printing result
print("The possible combinations : " + str(res))
Output :
The original dictionary : {'gfg': {'is': [6, 7, 8], 'best': [1, 9, 4]}} The possible combinations : {'gfg5': {'is': 7, 'best': 4}, 'gfg3': {'is': 7, 'best': 1}, 'gfg8': {'is': 8, 'best': 4}, 'gfg2': {'is': 6, 'best': 4}, 'gfg6': {'is': 8, 'best': 1}, 'gfg0': {'is': 6, 'best': 1}, 'gfg1': {'is': 6, 'best': 9}, 'gfg7': {'is': 8, 'best': 9}, 'gfg4': {'is': 7, 'best': 9}}
Using nested for loops to iterate over keys and values:
Approach:
Initialize an empty dictionary res to store the flattened dictionary.
Loop through each key-value pair in the input dictionary d using the items() method.
For each key-value pair, loop through each key-value pair in the value using the items() method and enumerate them.
Concatenate the parent key with the index and child key to create a new key for the flattened dictionary.
Assign the corresponding child value to the new key.
Add the new key-value pair to the res dictionary.
Return the flattened dictionary res.
Python3
def flatten_dict1(d):
res = {}
for k, v in d.items():
for i, (k2, v2) in enumerate(v.items()):
res[f"{k}{i}"] = {k2: v2[0]}
return res
test_dict = {'gfg': {'is': [6], 'for': [10], 'best': [4]}}
print(flatten_dict1(test_dict))
Output{'gfg0': {'is': 6}, 'gfg1': {'for': 10}, 'gfg2': {'best': 4}}
Time Complexity: O(n^2) where n is the number of keys in the input dictionary
Auxiliary Space: O(n)
Similar Reads
Python Nested Dictionary A Dictionary in Python works similarly to the Dictionary in the real world. The keys of a Dictionary must be unique and of immutable data types such as Strings, Integers, and tuples, but the key values can be repeated and be of any type. What is Python in Nested Dictionary? Nesting Dictionary means
3 min read
Itertools Combinations() function - Python The combinations() function in Python, part of the itertools module, is used to generate all possible combinations of a specified length from a given iterable (like a list, string, or tuple). Unlike permutations, where the order does matter, combinations focus only on the selection of elements, mean
2 min read
Python Dictionary Comprehension Like List Comprehension, Python allows dictionary comprehensions. We can create dictionaries using simple expressions. A dictionary comprehension takes the form {key: value for (key, value) in iterable}Python Dictionary Comprehension ExampleHere we have two lists named keys and value and we are iter
4 min read
Convert Lists to Nested Dictionary - Python The task of converting lists to a nested dictionary in Python involves mapping elements from multiple lists into key-value pairs, where each key is associated with a nested dictionary. For example, given the lists a = ["gfg", "is", "best"], b = ["ratings", "price", "score"], and c = [5, 6, 7], the g
3 min read
Python - Access Dictionary items A dictionary in Python is a useful way to store data in pairs, where each key is connected to a value. To access an item in the dictionary, refer to its key name inside square brackets.Example:Pythona = {"Geeks": 3, "for": 2, "geeks": 1} #Access the value assosiated with "geeks" x = a["geeks"] print
3 min read