1. 程式人生 > >Python語言特性-Python自省

Python語言特性-Python自省

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