C'è un modo in Python per determinare se un oggetto ha qualche attributo? Per esempio:
>>> 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'
Come puoi sapere se a
ha l'attributo property
prima di usarlo?
import string hasattr(string, "lower")