Python Program using single inheritance


In this program, you will learn how to implement single inheritance in Python.


class Second(First):
     //statement

Example: How to implement single inheritance in Python

class First:
    def display1(self):
        print("Parent class method is called here")


class Second(First):
    def display2(self):
        print("Child class method is called here")


obj = Second()
obj.display1()
obj.display2()

Output:

Parent class method is called here
Child class method is called here