python 中的type
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 中的type相关的知识,希望对你有一定的参考价值。
>>> class bar:pass
>>> b=bar()
>>> type(bar)
<class 'type'>
>>> type(b)
<class '__main__.bar'>
这两个返回值分别是什么意思?
<class '__main__.bar'> 指的是 是class bar 的一个instance
参照python2.7
>>> class bar:pass
>>> b=bar()
>>> type(bar)
<type 'classobj'>
>>> type(b)
<type 'instance'>
>>>本回答被提问者采纳
以上是关于python 中的type的主要内容,如果未能解决你的问题,请参考以下文章
python中的type和type.__new__有啥区别?