RE: Operator Overloading Basics

2006-08-28 Thread Mohit Bhatt
Thanks a lot Fredrik and Tim for your help. Cheers, Mohit -- http://mail.python.org/mailman/listinfo/python-list

Operator Overloading Basics

2006-08-28 Thread Mohit Bhatt
Hello, I just started out with python( couple of weeks). I have a query regarding Operator Overloading   class c1:     def __init__(self,value):     self.data = "">     def __add__ (self,operand2):     self.data += operand2