32 constructor in python

 

## Using __init__ we can create constructor

## Using constructor we can create instance varables.

## Constructor method will call when calling class

class One:

    def __init__(self, name, eid):

        self.name = name

        self.eid  = eid

        print('__init__')


    def add(self):

        print(' Add ', self.name)


    def sub(self):

        print(' SUB ', self.name)

        print(' SUB EID ', self.eid)



inst = One('UMAMAHESH', 999)

#inst.add()

#inst.sub()





Comments

Popular posts from this blog

1 PYTHON PROGRAMMING

16 file handling in python

4 Tuple data types