码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2017-12-19 19:40:17      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:print   面向对象   特性   类型   bool   简单   pytho   gpo   getattr   

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().

标签:print   面向对象   特性   类型   bool   简单   pytho   gpo   getattr   

原文地址:http://www.cnblogs.com/xuxueqin/p/8066034.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!