일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- shiba
- 운영체제
- 109. Convert Sorted List to Binary Search Tree
- 315. Count of Smaller Numbers After Self
- 프로그래머스
- Regular Expression
- Python
- Decorator
- Substring with Concatenation of All Words
- Class
- Protocol
- 컴퓨터의 구조
- 30. Substring with Concatenation of All Words
- t1
- Python Code
- LeetCode
- 43. Multiply Strings
- 715. Range Module
- attribute
- 파이썬
- Generator
- 밴픽
- Python Implementation
- Convert Sorted List to Binary Search Tree
- 시바견
- data science
- iterator
- kaggle
- DWG
- concurrency
Archives
- Today
- Total
Scribbling
<Python> Decorator 본문
Decorator는 이미 만든 함수를 수정하지 않고, 함수 주변을 감싸는 방식으로 함수에 추가 기능을 구현한다.
def trace(func):
# wrapper는 아래처럼 가변 인수로 만들 수 있다.
# 가변 인수가 아닌 경우, 원래 함수의 parameter 형태와 일치해야 한다.
def wrapper(*args, **kwargs):
ret = func(*args, **kwargs)
print('{0}(args={1}, kwargs={2}) -> {3}'.format(func.__name__, args, kwargs, ret))
# 원래 함수가 return이 필요한 경우에는 wrapper도 return이 필요하다.
return ret
return wrapper
@trace
def get_max(*args):
return max(args)
print(get_max(30, 40, 50))
매개변수가 있는 decorator는 아래와 같이 만든다. (함수를 한번 더 포장한다)
import functools
# 매개 변수가 있는 Decorator는 wrapper 위에 @functools.wraps(func)를 추가한다.
def hello(t):
def trace(func):
# wrapper는 아래처럼 가변 인수로 만들 수 있다.
# 가변 인수가 아닌 경우, 원래 함수의 parameter 형태와 일치해야 한다.
@functools.wraps(func)
def wrapper(*args, **kwargs):
print('hello'*t)
ret = func(*args, **kwargs)
print('{0}(args={1}, kwargs={2}) -> {3}'.format(func.__name__, args, kwargs, ret))
# 원래 함수가 return이 필요한 경우에는 wrapper도 return이 필요하다.
return ret
return wrapper
return trace
@hello(3)
def get_max(*args):
return max(args)
print(get_max(30, 40, 50))
'Computer Science > Python' 카테고리의 다른 글
Python Int Representation & Bit Operations (0) | 2022.01.13 |
---|---|
<Python> 정규표현식 (0) | 2021.11.09 |
<Python> Iterator, Generator (0) | 2021.11.09 |
<Python> Class 파헤치기 (0) | 2021.10.28 |
<Python> 클로저 (0) | 2021.10.28 |