Lesson 7: Class vs instance attributes
So far every attribute lived on the object itself. But some data is shared by all objects of a class — and it has a different home: the class body. We'll learn to tell a class attribute from an instance attribute, and how Python looks them up.