14
如何知道对象在Python中是否具有属性
Python中是否有一种方法可以确定对象是否具有某些属性?例如: >>> a = SomeClass() >>> a.someProperty = value >>> a.property Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: SomeClass instance has no attribute 'property' 在使用a属性property之前,如何判断该属性是否具有?
1630
python
attributes