关于 python 一切皆对象的实际理解
1 关于type
type 函数可以查看一个对象的类
type 类是一切类型的模版
In [2]: type(1)
Out[2]: int
In [3]: type(int)
Out[3]: type
In [9]: type(type)
Out[9]: type
In [5]: type(object)
Out[5]: type
2 object 是一切类的基类
In [3]: int.__bases__ Out[3]: (object,) In [4]: type.__bases__ Out[4]: (object,)