본문 바로가기
장고 프레임워크

파이썬 __builtin__ module attr 함수들

by 문자메일 2020. 8. 23.

getAttr()

value 뿐만 아니라 method도 getattr() function으로 가져올 수 있고,

 handler = getattr(self, "get", .. ) 으로 get function의 address를 handler 변수에 저장하여

 get 함수를 handler("aaaa", "bbbb") 처럼 호출할 수 있다.

 

- https://technote.kr/249

setAttr()

- https://technote.kr/248

hasAttr()

- https://technote.kr/251

delAttr()

- https://technote.kr/250

댓글