Hashtables in pyhton ...

Larry Bates larry.bates at websafe.com
Thu Mar 9 10:36:50 EST 2006


Konrad Mühler wrote:
> Hi,
> 
> are there predefinded chances to use hashtables in python? How can I use
> Hashtable in python? Or do I have to implement this on my own?
> 
> Thanks

Take a look at a python dictionary.  keys in dictionaries are hashed and
lookups are very efficient.

-Larry Bates



More information about the Python-list mailing list