hello, Passing all kinds of data between objects, I'm looking for an elegant (and simple) way to pack the data. Now it looks to me that both the class and the inherited list, performs equally well. Till now, the most elegant way (in my view) is the list inheritance, mainly because you don't need brackets and no quotes. What are others opinion about this ?
thanks, Stef Mientki class super_list(list): pass def kwadraat ( value ) : return value * value x={} x['frequency']=33 x['functie']=kwadraat print x['functie'](2) y = super_list() y.frequency = 33 y.functie = kwadraat print y.functie(3) -- http://mail.python.org/mailman/listinfo/python-list