Python Program to find the sum of two numbers using multiple inheritance


In this program, you will learn how to find the sum of two numbers using multiple inheritance in Python.


10 + 20 => 30

20 + 30 => 50

Example: How to find the sum of two numbers using 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):
        super().input1()
        super().input2()
        self.z = self.x + self.y
        print("Sum is:", self.z)


obj = Third()
obj.add()

Output:

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