Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Polymorphism | Polymorphism
Object-Oriented Programming in Python

Polymorphism

Polymorphism is a class property to modify superclass functionality. Methods or attributes can have various meanings and purposes inside the different classes. Methods in the superclass are virtual, that means they can be overridden in the children's classes.

Code

Each class has the say method. But each method performs different things.

Everything was clear?

Section 4. Chapter 1
course content

Course Content

Object-Oriented Programming in Python

Object-Oriented Programming in Python

Polymorphism

Polymorphism is a class property to modify superclass functionality. Methods or attributes can have various meanings and purposes inside the different classes. Methods in the superclass are virtual, that means they can be overridden in the children's classes.

Code

Each class has the say method. But each method performs different things.

Everything was clear?

Section 4. Chapter 1
some-alt