Python Program using multiple inheritance


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


class First:
     //statement

class Second:
     //statement

class Third(First, Second)
     //statement

Example: How to implement multiple inheritance in Python

class First:
    def input1(self):
        self.x = int(input("Enter first number:"))


class Second:
    def input2(self):
        self.y = int(input("Enter second number:"))


class Third(First, Second):
    def add(self):
        self.z = self.x + self.y
        print("Sum is:", self.z)


obj = Third()
obj.input1()
obj.input2()
obj.add()

Output:

Enter first number:10
Enter second number:20
Sum is: 30