14
Pythonでオブジェクトに属性があるかどうかを知る方法
Pythonでオブジェクトに属性があるかどうかを判断する方法はありますか?例えば: >>> 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' それを使用する前にa、属性があるかどうかをどのように確認できますpropertyか?
1635
python
attributes