|
2 |
edited tags
|
||
|
|
||||
|
1 |
|
||
Python Golf: what's the most concise way of turning this list of lists into a dictionary:I have a list of lists that looks like this:
and I want to turn it into a dictionary where each key is a name and each value is a number corresponding to the position of its sublist in the list:
I tried various list comprehensions, but I couldn't get it to work right with the nested lists. I could use a nested loop, like this:
but I suspect there is a shorter, more elegant way of doing it.
|
||||
