Answers for "find key in dictionary python from index"

5

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
Posted by: Guest on June-21-2020
0

find position of key in dictionary python

keys = list(dictionary.keys()
index = keys.index("test")
Posted by: Guest on December-28-2020

Code answers related to "find key in dictionary python from index"

Python Answers by Framework

Browse Popular Code Answers by Language