Existe uma maneira no Python para determinar se um objeto tem algum atributo? Por exemplo: >>> a = SomeClass() >>> a.someProperty = value >>> a.property Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: SomeClass instance...