Python Program to find the largest of three numbers using single inheritance


In this program, you will learn how to find the largest of three numbers using single inheritance in Python.


class Test(First):
      def check(self):
          //statement

Example: How to find the largest of three numbers using single inheritance in Python

class First:
    def __init__(self):
        self.a = int(input("Enter first number:"))
        self.b = int(input("Enter second number:"))
        self.c = int(input("Enter third number:"))


class Test(First):
    def check(self):
        if self.a > self.b and self.a > self.c:
            print("Largest is:", self.a)
        elif self.b > self.c:
            print("Largest is:", self.b)
        else:
            print("Largest is:", self.c)


obj = Test()
obj.check()

Output:

Enter first number:10
Enter second number:30
Enter third number:20
Largest is: 30