Summary

Summarize the concept explored in this chapter regarding when objects are alike in Python.

We'll cover the following...

Recall

Some key points in this chapter:

  • A central object-oriented design principle is inheritance: a subclass can inherit aspects of a superclass, saving copy-and-paste programming. A subclass can extend the superclass to add features or
...