get dict item with index\ code example
Example 1: python dictionary get element by index
value_at_index = dic.values()[index]
Example 2: python dict get index
i = {
'foo':'bar',
'baz':'huh?'
}
#in python 3, you'll need to cast to list:
# keys = list(i.keys())
keys = i.keys()
values = i.values()
print(keys[values.index("bar")])
# output: 'foo'