[python]Dictionary
A dictionary contains 1 to 1 mapping.
dict = {"key1":"value1", "key2":"value2"}
then we can simply refer the key to call corresponding value
var = dict["key1"]
A dictionary contains 1 to 1 mapping.
dict = {"key1":"value1", "key2":"value2"}
then we can simply refer the key to call corresponding value
var = dict["key1"]