I don't know how to ask this question. But my mind was crashed when I try this,
In [18]: isinstance(object, type)
Out[18]: True
In [19]: isinstance(object, object)
Out[19]: True
In [20]: isinstance(type, object)
Out[20]: True
In [21]: isinstance(type, type)
Out[21]: True
I can explain some thing from above:
- object is a instance of type
- object is a instance of object
- type is a instance of object
- type is a instance of type
I don't know how to evaluate above concept. Please any one explain the above concept.