Python class objects confusing
In python, class and instance are both objects.
<Learning Python> says that,
When we run a class statement, we get a class object.
When we call a class object, we get an instance object.
Such confusing definitions.