질문 : 객체에 Python 속성이 있는지 확인하는 방법 파이썬에서 객체에 속성이 있는지 확인하는 방법이 있습니까? 예를 들면 : >>> a = SomeClass() >>> a.someProperty = value >>> a.property Traceback (most recent call last): File "", line 1, in AttributeError: SomeClass instance has no attribute 'property' 경우 어떻게 알 수 a 속성이 property 을 사용하기 전에를? 답변 hasattr() 시도 : if hasattr(a, 'property'): a.property 편집 : 용서를 구하는 것에 대한 좋은 조언을 제공하는 아래 zweiterlinde의 답변을..