14
Como saber se um objeto tem um atributo em Python
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 has no attribute 'property' Como você pode saber se atem o …
1635
python
attributes