"G. Völkl" <[EMAIL PROTECTED]> wrote: > >I use a dictionary: > >phone = {'mike':10,'sue':8,'john':3} > >phone['mike'] --> 10 > >I want to know who has number 3? > >3 --> 'john' > >How to get it in the python way ?
If you need to do this a lot, just keep two dictionaries, where the keys in each are the values in the other. reversephone = dict( zip( phone.values(), phone.keys() ) ) -- - Tim Roberts, [EMAIL PROTECTED] Providenza & Boekelheide, Inc. -- http://mail.python.org/mailman/listinfo/python-list