Gibt es in Python eine Möglichkeit, festzustellen, ob ein Objekt ein Attribut hat? Zum Beispiel: >>> a = SomeClass() >>> a.someProperty = value >>> a.property Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: SomeClass...