What is the difference between class attributes and instance attributes?
Class attributes belong just to the class, not to instance of that class. Instance attributes are shared among all instances of a class
There is no difference between class attributes and instance attributes
Class attributes are shared by all instances of the class. Instance attributes may be unique to just that instance
Instance attributes can be changed, but class attributes cannot be changed