Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #key #dictionary #python #index
ADD COMMENT
Topic
Name
8+8 =