Introduction to Super Built-in
Let's discuss super built-in and how it can be used.
The super
built-in function was introduced way back in Python 2.2.
The super
function will return a proxy object that will delegate method
calls to a parent or sibling class and returns an object that represents the parent class. If that was a little unclear, what it allows us to do is access inherited methods that have been overridden in a class.
Get hands-on with 1400+ tech skills courses.