Site icon DataFlair

Python Inheritance Tutorial- Method Overloading & Method Overriding

Python course with 57 real-time projects - Learn Python

In this Python tutorial, we talk about Python inheritance and types of inheritance in python with their syntax.

Moreover, we will study Python super function, Python method overriding and Python method overloading.

So, let’s start the Python Inheritance Tutorial.

Python Inheritance Tutorial- Method Overloading & Method Overriding

What is Inheritance in Python?

It is a universal fact that every student is a person. This is in hindsight of non-human students if any. To depict this relationship, we take an illustration.

Python Inheritance – Illustration

The relationship from person to a student is termed ‘Specialization’. Conversely, every student is a person, this is called Generalization.

In this representation, we use an arrow towards the base class as a UML (Unified Modeling Language) convention.

Here, Person can be called any of the following:

Technology is evolving rapidly!
Stay updated with DataFlair on WhatsApp!!

Likewise, Student here is:

Python Inheritance Syntax

To make a class inherit from another, we apply the name of the base class in parentheses to the derived class’ definition.

>>> class Person:
                pass
>>> class Student(Person):
                pass
>>> issubclass(Student,Person)

Output

True

Here, class Student inherits from class Person. Here, since we only want to focus on the python syntax, we use the ‘pass’ statement in the bodies of the classes.

Also, we use the function issubclass() to confirm that student is a subclass of person.

Types of Inheritance in Python

There are five types of inheritance in python, we observe.

Types of Python Inheritance

1. Single Inheritance in Python

A single Python inheritance is when a single class inherits from a class.

>>> x=0
>>> class fruit:
                def __init__(self):
                                global x
                                x+=1
                                print("I'm a fruit")                          
>>> class citrus(fruit):
                def __init__(self):
                                super().__init__()
                                global x
                                x+=2
                                print("I'm citrus")                           
>>> x
>>> lime=citrus()

Output

I’m a fruit
I’m citrus
>>> x

Output

3

2. Python Multiple Inheritance

Multiple Python inheritance are when a class inherits from multiple base classes.

>>> class Color:
                pass
>>> class Fruit:
                pass
>>> class Orange(Color,Fruit):
                pass
>>> issubclass(Orange,Color) and issubclass(Orange,Fruit)

Output

True

3. Multilevel Inheritance in Python

When one class inherits from another, which in turn inherits from another, it is multilevel python inheritance.

>>> class A:
                x=1         
>>> class B(A):
                pass
>>> class C(B):
                pass
>>> cobj=C()
>>> cobj.x

Output

1

4. Hierarchical Inheritance in Python

When more than one class inherits from a class, it is hierarchical Python inheritance.

>>> class A:
                pass
>>> class B(A):
                pass
>>> class C(A):
                pass
>>> issubclass(B,A) and issubclass(C,A)

Output

True

5. Hybrid Inheritance in Python

Hybrid Python inheritance is a combination of any two kinds of inheritance.

>>> class A:
                x=1       
>>> class B(A):
                pass
>>> class C(A):
                pass
>>> class D(B,C):
                pass
>>> dobj=D()
>>> dobj.x

Output

1

Python Inheritance Super Function – Super()

With inheritance, the super() function in python actually comes in quite handy. It allows us to call a method from the parent class.

Let’s define a new class for this.

>>> class Vehicle:
                def start(self):
                                print("Starting engine")
                def stop(self):
                                print("Stopping engine")                            
>>> class TwoWheeler(Vehicle):
                def say(self):
                                super().start()
                                print("I have two wheels")
                                super().stop()                            
>>> Pulsar=TwoWheeler()
>>> Pulsar.say()

Output

Starting engine
I have two wheels
Stopping engine

Python Override Method

A subclass may change the functionality of a Python method in the superclass. It does so by redefining it.

This is termed python method overriding. Lets see this Python Method Overriding Example.

>>> class A:
                def sayhi(self):
                                print("I'm in A")                          
>>> class B(A):
                def sayhi(self):
                                print("I'm in B")                             
>>> bobj=B()
>>> bobj.sayhi()

Output

I’m in B

Python Method Overloading

Before we say anything, we’d like you to take a look at the following code:

>>> def add(a,b):
      return a+b
>>> def add(a,b,c):
      return a+b+c
>>> add(2,3)

Output

Traceback (most recent call last):
File “<pyshell#8>”, line 1, in <module>
add(2,3)
TypeError: add() missing 1 required positional argument: ‘c’

What looks like overloading methods, it is actually that Python keeps only the latest definition of a method you declare to it.

This code doesn’t make a call to the version of add() that takes in two arguments to add. So we find it safe to say Python doesn’t support method overloading.

However, we recently ran into a rather Pythonic way to make this happen. Check this out:

>>> def add(instanceOf,*args):
      if instanceOf=='int':
              result=0
      if instanceOf=='str':
              result=''
      for i in args:
              result+=i
      return result

In this code, not only do we use the *args magic variable for variable arity, we also let the code deal with both integers and strings.

Watch it happen:

>>> add('int',3,4,5)

Output

12

>>> add('str','I ','speak ','Python')

Output

‘I speak Python’

You say what if I do this?:

>>> def add(a,b,c=0):

Output

return a+b+c

>>> add(2,3)

Output

5

To that, we’ll say this isn’t method overloading, this is simply used of default arguments.

Python Interview Questions on Inheritance

  1. How does inheritance work in Python?
  2. What are the types of inheritance in Python?
  3. Does Python support multiple inheritance?
  4. What is Python inheritance? Explain with example.
  5. Is hierarchical inheritance possible in Python?

Conclusion

Of all things good, Python inheritance saves us time, effort, and memory.

In this tutorial, we looked at Python inheritance syntax, inheritance types, Python method overloading, method overriding in python and python super functions.

Tell us in a comment box, if something is missing.

Exit mobile version