Answers for "python dictionary get specific key value"

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

how to get a specific key in a dictionary python

>>> print(fruit.get('kiwi'))
2.0
Posted by: Guest on March-15-2021

Code answers related to "python dictionary get specific key value"

Python Answers by Framework

Browse Popular Code Answers by Language