Hash map with multiple keys per value ?

snoe case.nelson at gmail.com
Fri Nov 11 22:08:07 EST 2005


Are you looking for this type of thing?

class Test:
    value = 900

t = Test()
d['1'] = t
d['2'] = t
d['3'] = t

d['3'].value = 800
d['1'].value




More information about the Python-list mailing list