Instance Objects : Class Instance : Class PYTHON examples


PYTHON examples » Class » Class Instance »

 

Instance Objects


Instance Objects



class Complex:
     def __init__(self, realpart, imagpart):
         self.r = realpart
         self.i = imagpart

x = Complex(3.0, -4.5)


x.counter = 1
while x.counter < 10:
    x.counter = x.counter * 2
print x.counter
del x.counter


           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Class
» Class Instance