I have a dictionary of numbers to lists of numbers like:
a = { 1: [2,3,4] , 2: [1,4] }
i want to create a new dictionary with comprehension based on it where each element from each list would be linked to the key to that list.
That would be something like:
b = { element : [key] for key in a.keys() for element in a[key]}
that gives me of course:
b = {1: [2], 2: [1], 3: [1], 4: [2]}
instead of
b = {1: [2], 2: [1], 3: [1], 4: [1,2]}
because the index gets overwritten. so I need to do something like:
b = { element : [key] + self[element] for key in a.keys() for element in a[key]}
or
b = { element +: key for key in a.keys() for element in a[key]}
but in a working fashion.
Is it possible?