I have a list of values like:
["a", 1, "b", 2, "c", 3]
and I would like to build such a dict from it:
{"a": 1, "b": 2, "c": 3}
What is the natural way to do it in Python?
|
I have a list of values like:
and I would like to build such a dict from it:
What is the natural way to do it in Python? |
|||||||||||
|
|
|||||||||||||||||||||
|
|
This seems rather succint, but I wouldn't call it very natural:
|
|||
|
|
|
You can
|
|||
|
|
|
Another way:
|
|||
|
|
|
I don't really see many situations where you would run into this exact problem, so there is no 'natural' solution. A quick one liner that should do the trick for you would be however:
|
|||||||||||||
|