最佳答案
如何检查对象是否具有某些属性?例如:
>>> a = SomeClass()>>> a.propertyTraceback (most recent call last):File "<stdin>", line 1, in <module>AttributeError: SomeClass instance has no attribute 'property'
在使用之前,我如何判断a
是否具有属性property
?