"파이썬 getattr()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
4번째 줄: 4번째 줄:


{{소스헤더|문법}}
{{소스헤더|문법}}
<source lang='python'>
<syntaxhighlight lang='python'>
getattr(object, name[, default])
getattr(object, name[, default])
</source>
</syntaxhighlight>


{{소스헤더|예시}}
{{소스헤더|예시}}
<source lang='python' run>
<syntaxhighlight lang='python' run>
class Point:
class Point:
     def __init__(self):
     def __init__(self):
21번째 줄: 21번째 줄:
print( getattr(p, 'a') )
print( getattr(p, 'a') )
# AttributeError: 'Point' object has no attribute 'a'
# AttributeError: 'Point' object has no attribute 'a'
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 12월 16일 (수) 00:00 판

1 개요

Python getattr()
  • 이름에 해당하는 객체 속성의 값을 가져오는 Build-in 함수
문법
getattr(object, name[, default])
예시
class Point:
    def __init__(self):
        self.x = 10
        self.y = 20

p = Point()

print( getattr(p, 'x') )          # 10
print( getattr(p, 'z', 'Hello') ) # Hello
print( getattr(p, 'a') )
# AttributeError: 'Point' object has no attribute 'a'

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}