I am trying to create a dictionary where the keys are elements of each list, and the values are their indexes in that list of lists, so that I can easily find where exactly every element is.
So if the list is [['a', 'a', 'b'], ['a', 'b', 'b'], ['c', 'c', 'c']] ,
dictionary should be like this:{'c': {(2, 0), (2, 1), (2, 2)}, 'b': {(1, 1), (1, 2), (0, 2)}, 'a': {(0, 1), (1, 0), (0, 0)}}
I can get each elements index in their respective lists with list comprehension: final_list = [list(enumerate(i)) for i in mylist] but I couldn't find a way to get their "complete" indexes that also include the index of their list.