Summary

Summarize the concept explored in this chapter regarding when to use object-oriented programming in Python.

We'll cover the following...

Recall

Here are some of the key points in this chapter:

  • When we have both data and behavior, this is the sweet spot for object-oriented design. We can leverage Python’s generic collections and ordinary functions for many things. When it becomes complex
...