Search⌘ K

The Syntax and Terminologies

Explore inheritance in Python by understanding key terms like parent and child classes, and how inheritance syntax enables reusability and modularity. This lesson helps you grasp how classes extend one another to manage code efficiently.

We'll cover the following...

The terminologies

In inheritance, in order to create a new class based on an existing class, we use the following terminology:

  • Parent Class (Super Class or Base Class): This class allows the reuse of its public properties in another class.
  • Child Class (Sub Class or Derived Class): This class
...