Answers for "how to get a value in a dictionary from its 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
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)
Posted by: Guest on February-04-2021

Code answers related to "how to get a value in a dictionary from its index"

Python Answers by Framework

Browse Popular Code Answers by Language