Answers for "python dict get index"

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

Python Answers by Framework

Browse Popular Code Answers by Language