Python OOP Tutorial 4: Inheritance - Creating Subclasses

Corey Schafer
Youtube
Related Topic
:- Python

In this Python Object-Oriented Tutorial, we will be learning about inheritance and how to create subclasses. Inheritance allows us to inherit attributes and methods from a parent class. This is useful because we can create subclasses and get all of the functionality of our parents class, and have the ability to overwrite or add completely new functionality without affecting the parents class in any ways.

Comments