how to get values to certain index in dict python code example

Example 1: 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 2: python dictionary get element by index

value_at_index = dic.values()[index]

Example 3: create dict of value to index from list python

>>> lst = ['A','B','C']
>>> {k: v for v, k in enumerate(lst)}
{'A': 0, 'C': 2, 'B': 1}

Example 4: find position of key in dictionary python

keys = list(dictionary.keys()
index = keys.index("test")