Hello, 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 ?
Thanks
Gerhard
--
http://mail.python.org/mailman/listinfo/python-list
