Answers for "python get specific key valuefrom dictionary"

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

extract specific key values from python dictionary

test_data = [{'id':1, 'value':'one'}, {'id':2, 'value':'two'}, {'id':3, 'value':'three'}]

generator = ( item['value'] for item in test_data )

...

for i in generator:
    do_something(i)
Posted by: Guest on March-06-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language