Python Program using multilevel inheritance
In this program, you will learn how to implement multilevel inheritance in Python.
class First:
//statement
class Second(First):
//statement
class Third(Second):
//statement
Example: How to implement multilevel inheritance in Python
class First:
def msg1(self):
print("msg1 is called here ")
class Second(First):
def msg2(self):
print("msg2 is called here ")
class Third(Second):
def msg3(self):
print("msg3 is called here ")
obj = Third()
obj.msg1()
obj.msg2()
obj.msg3()
Output:
msg1 is called here
msg2 is called here
msg3 is called here