Python consturctor
Constructor
Constructor: constructor is a special function
which is called at the time of object creating
If constructor is not difine manually then python
bydefault create a constructor
__init__(self): this is the constructor
Def __init__(self):
self.name = ‘ABC’
self.age = ‘23’