Possible Duplicate:
Transform tuple to dict
How do I change a list of tuples such as:
seq = [(1, 2), (3, 4), (5, 6)]
into a dictionary:
dicta = { 1:2, 2:4, 5:6 }
How do I change a list of tuples such as:
into a dictionary:
|
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Isn't python nice :) As defined in the Python Docs:
|
|||
|
|