如何知道一个对象在Python中是否有属性?
2022-09-05 00:50:28
如何确定对象是否具有某些属性?例如:
>>> a = SomeClass()
>>> a.property
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: SomeClass instance has no attribute 'property'
在使用之前,您如何判断是否具有该属性?a
property