Lets say I have
class foo(object):
    def __init__(self, x, y):
        self.x=x
        self.y=y
    def xplusy(self):
        self.xy = x+y

inst = foo(1,2)
inst.xy   # no value, but I what this to cause the calculation of inst.xy

I don't what to have self.xy calculated before it is called.


Thanks

*Vincent Davis
720-301-3003 *
vinc...@vincentdavis.net
 my blog <http://vincentdavis.net> |
LinkedIn<http://www.linkedin.com/in/vincentdavis>
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to