class or inherited list ?

S

Stef Mientki

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,540
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top