python get value from dictionary by index code example
Example 1: how to retrieve dictionary values in python by index
a_dictionary = {"a": 1, "b": 2, "c":3}
keys_list = list(a_dictionary)
key = keys_list[0]
print(key)
Example 2: how to get key of a particular value in dictionary python using index
mydict = {'george': 16, 'amber': 19}
print(list(mydict.keys())[list(mydict.values()).index(16)]) # Prints george
Example 3: python dictionary get element by index
value_at_index = dic.values()[index]