Summary

Summarize the concept explored in this chapter regarding objects in Python.

We'll cover the following...

Recall

Some key points in this chapter:

  • Python has optional type hints to help describe how data objects are related and the parameters for methods and functions.
  • We create Python classes with the class statement. We should initialize the attributes in the
...