类是type生成的对象1
2
3
4
5
6
7type(1) # int
type(int) # type
#type -> int -> 1
#type -> class -> object
type.__bases__ # object
type(object)
object.__bases__ #()
object是顶层基类
type是一个类,也是一个对象
类是type生成的对象1
2
3
4
5
6
7type(1) # int
type(int) # type
#type -> int -> 1
#type -> class -> object
type.__bases__ # object
type(object)
object.__bases__ #()
object是顶层基类
type是一个类,也是一个对象
最后更新时间:
各位大爷们,评论在下最方,打赏点下面。转载请注明GitHub项目地址:https://github.com/wordfeng/wordfeng.github.io