갱스
[Python] decorator 본문
python의 decorator 개념 이해를 돕는 예제이다
args와 kwargs가 도대체 무엇인지 이 코드를 보면 이해할 수 있다
꼭 직접 실행해보자
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#--*-- coding:utf-8 --*-- | |
def arg_log(func): | |
def dec(*args, **kwargs): | |
print args # list형식. 위치기반 인자정보 | |
print kwargs # dictionary 형식. 이름있는 인자정보 | |
func(*args, **kwargs) | |
return dec | |
@arg_log | |
def hihi(a, s, b): | |
print "in hihi" | |
hihi(2, "sdf", b=3) | |
hihi(*(2, 'asdf'), **{'b':4}) |
'Python' 카테고리의 다른 글
boost::python Embedding (0) | 2017.12.17 |
---|---|
selenium example (0) | 2015.03.19 |