Python自省 type(),dir(),getattr(),hasattr(),isinstance().

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python自省 type(),dir(),getattr(),hasattr(),isinstance().相关的知识,希望对你有一定的参考价值。

Python自省

这个也是python彪悍的特性.

自省就是面向对象的语言所写的程序在运行时,所能知道对象的类型.简单一句就是运行时能够获得对象的类型.比如type(),dir(),getattr(),hasattr(),isinstance().

a = [1,2,3]
b = {‘a‘:1,‘b‘:2,‘c‘:3}
c = True
print type(a),type(b),type(c) # <type ‘list‘> <type ‘dict‘> <type ‘bool‘>
print isinstance(a,list)  # True

以上是关于Python自省 type(),dir(),getattr(),hasattr(),isinstance().的主要内容,如果未能解决你的问题,请参考以下文章

Python的自省机制与Python 的反射机制

Python的自省机制与Python 的反射机制

python数据类型

python数据类型

Python自省与反射

python学习之自省/反射