Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I made a function which will look up ages in dictionary and show the matching name:

list = {'george':16,'amber':19}
search_age = raw_input("Provide age")
for age in list.values():
    if age == search_age:
        name = list[age]
        print name

I know how to compare and find the age I just don't know how to show the name of the person. Additionally, I am getting a KeyError because of line 5. I know it's not correct but I can't figure out to make it search backwards.

Any help would be appreciated.

share|improve this question
@Jonathan Please don't edit code in questions like that, it is important to leave the errors the OP made. You missed a use of list so it didn't even make sense any more. – agf Nov 6 '11 at 17:31
@agf - k :) you have a keen eye... – Jonathan Nov 6 '11 at 23:47
The example code is a bit unlucky, since it uses list (a predefined type) for something different (a dictionary). A good answer is also difficult, because it is not specified what to do in case of several matching entries or how frequently the reverse-lookup is done for a dictionary of what size. My first idea would be to build a reversed dictionary, but that does not pay off for a single entry. – guidot Apr 3 at 10:33

6 Answers

up vote 15 down vote accepted

There is none. dict is not intended to be used this way.

for name, age in list.iteritems():
    if age == search_age:
        print name
share|improve this answer

If you want both the name and the age, you should be using .items() which gives you key (key, value) tuples:

for name, age in mydict.items():
    if age == search_age:
        print name

You can unpack the tuple into two separate variables right in the for loop, then match the age.

You should also consider reversing the dictionary if you're generally going to be looking up by age, and no two people have the same age:

{16: 'george', 19: 'amber'}

so you can look up the name for an age by just doing

mydict[search_age]

I've been calling it mydict instead of list because list is the name of a built-in type, and you shouldn't use that name for anything else.

You can even get a list of all people with a given age in one line:

[name for name, age in mydict.items() if age == search_age]

or if there is only one person with each age:

next((name for name, age in mydict.items() if age == search_age), None)

which will just give you None if there isn't anyone with that age.

Finally, if the dict is long and you're on Python 2, you should consider using .iteritems() instead of .items() as Cat Plus Plus did in his answer, since it doesn't need to make a copy of the list.

share|improve this answer
1  
Correct, but if you're going to do linear search, you might as well replace the dict with a list of pairs. – larsmans Nov 5 '11 at 21:15
Unless your usual action is looking ages up by name, in which case a dict makes sense. – agf Nov 5 '11 at 21:16
Yes, alright. +1. – larsmans Nov 5 '11 at 21:18
The [name for name, age in mydict.items() if age == search_age] answer is the easiest to read and seems the most intuitive to me. – brimble2010 Mar 4 at 18:07
list = {'george':16,'amber':19}
print list.keys()[list.values().index(16)] #print george

Basically, it separates the dictionary in a list and finding a position in the list of values​​, see the position in the list of keys.

share|improve this answer

I thought it would be interesting to point out which methods are the quickest, and in what scenario:

Here's some tests I ran (on a 2012 MacBook Pro)

>>> def method1(list,search_age):
...     for name,age in list.iteritems():
...             if age == search_age:
...                     return name
... 
>>> def method2(list,search_age):
...     return [name for name,age in list.iteritems() if age == search_age]
... 
>>> def method3(list,search_age):
...     return list.keys()[list.values().index(search_age)]

Results from profile.run() on each method 100000 times:

Method 1:

>>> profile.run("for i in range(0,100000): method1(list,16)")
     200004 function calls in 1.173 seconds

Method 2:

>>> profile.run("for i in range(0,100000): method2(list,16)")
     200004 function calls in 1.222 seconds

Method 3:

>>> profile.run("for i in range(0,100000): method3(list,16)")
     400004 function calls in 2.125 seconds

So this shows that for a small dict, method 1 is the quickest. This is most likely because it returns the first match, as opposed to all of the matches like method 2 (see note below).


Interestingly, performing the same tests on a dict I have with 2700 entries, I get quite different results (this time run 10000 times):

Method 1:

>>> profile.run("for i in range(0,10000): method1(UIC_CRS,'7088380')")
     20004 function calls in 2.928 seconds

Method 2:

>>> profile.run("for i in range(0,10000): method2(UIC_CRS,'7088380')")
     20004 function calls in 3.872 seconds

Method 3:

>>> profile.run("for i in range(0,10000): method3(UIC_CRS,'7088380')")
     40004 function calls in 1.176 seconds

So here, method 3 is much faster. Just goes to show the size of your dict will affect which method you choose.

Notes: Method 2 returns a list of all names, whereas methods 1 and 3 return only the first match. I have not considered memory usage. I'm not sure if method 3 creates 2 extra lists (keys() and values()) and stores them in memory.

share|improve this answer
lKey = [key for key, value in lDictionary.iteritems() if value == lValue][0]
share|improve this answer
for name in mydict.keys():
    if mydict[name] == search_age:
        print name 
        #or do something else with it. 
        #if in a function append to a temporary list, 
        #then after the loop return the list
share|improve this answer
Using a for loop and append is much slower than a list comprehension and it's also longer. – alexpinho98 May 16 at 20:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.