Intro to Object Inheritance: Software Engineering Full time 13 Phase 3 Hybrid

Close

Learning Goals


Key Vocab


Introduction

The concept of inheritance in Python works similarly to the real world — A prince can inherit a kingdom and everything within it; a baby can inherit genetic traits from a parent. In Python, a class can inherit the behaviors of another class, referred to as the superclass.

In these lessons, we'll cover:

In this section, we'll explain how we can leverage the power of Python to define basic classes with large reusability and smaller subclasses for more fine-grained, detailed behaviors.


Resources