How does a Python class differ from an instance object?
A class defines a reusable template, while an instance is a specific object created from that class
Classes can contain methods but instances can never store data
An instance defines the template and a class is one occurrence of it
A class and every instance are the exact same object