Hello! Here is another one.
class A:
def __init__(self, data):
self.data = data
print self.data
I'm trying to understand this function-like syntax:
A('foo').__init__(42)
A(12).data
What are we actually calling this way?
Are there any other ways to get the same result?
Cheers.
_______________________________________________
Tutor maillist - [email protected]
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor
