Problem Statement - B02A-2015
Illustrate the concept inheritance with the help of a python code
Solution
CSKC| Created: 11-Jan-2019 | Updated: 11-Jan-2019|CBSE12A-2015
Illustrate the concept inheritance with the help of a python code
|
class Base: def __init__ (self): print "Base Constructor at work..." def show(self): print "Hello Base" class Der(Base): def __init__(self): print "Derived Constructor at work..." def display(self): print "Hello from Derived"
CSKC| Created: 11-Jan-2019 | Updated: 11-Jan-2019|CBSE12A-2015