Show class relation between type and object:
issubclass(type,object)
True
issubclass(object,type)
False
It is clear that type
derived from object
,object
is the father class of type
,type
is the son class
of object
.
isinstance(type,object)
True
isinstance(object,type)
True
How to understand that type
is the instance of object
and vice versa ?