Answers for "find position of key in dictionary python"

0

find position of key in dictionary python

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

python dict get index

i = {
	'foo':'bar',
	'baz':'huh?'
}

#in python 3, you'll need to cast to list:
# keys = list(i.keys())

keys = i.keys()
values = i.values()

print(keys[values.index("bar")])
# output: 'foo'
Posted by: Guest on October-02-2020

Code answers related to "find position of key in dictionary python"

Python Answers by Framework

Browse Popular Code Answers by Language