...

/

Introduction to Containership and Inheritance

Introduction to Containership and Inheritance

Learn when and why we use containership and inheritance.

We'll cover the following...

Reuse mechanisms

Instead of reinventing code that is already available, it makes sense to reuse existing code.

Python allows two mechanisms for reusing code:

  • Containership
...