Programming

Method Overloading and Method Overriding in Python

A concept in python

Amit Chauhan
Towards AI
Published in
3 min readJun 3, 2021

--

Photo by Reza Namdari on Unsplash

In this article, we will discuss method overloading and method overriding. Both the concepts are the type of polymorphism. Polymorphism is a concept from object-oriented programming (OOPs) that the same method behaves shows different characteristics.

Method Overloading

--

--