Problem Statement - B02A-2015D
Illustrate the concept inheritance with the help of a python code
Solution
CSKC| Created: 12-Jan-2019 | Updated: 12-Jan-2019|CBSE12D-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: 12-Jan-2019 | Updated: 12-Jan-2019|CBSE12D-2015