Quote:Originally Posted by datulaidahow to build hash table in python?
any suggestion?
thanks..The Python equivalent of a hash table is a dictionary. Example:
Code: ( python )
- >>> dd = {'a': 1, 'b': 2, 'c': 3}
- >>> dd['a']
- 1
- >>>
bvdet
| Fri, 04 Jan 2008 23:36:00 GMT |