Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Ga
- 통계학
- matplotlib
- 서평단
- 텐서플로
- 서평
- 파이썬
- 독후감
- 한빛미디어서평단
- python visualization
- Google Analytics
- Python
- MATLAB
- 월간결산
- tensorflow
- 파이썬 시각화
- 한빛미디어
- Linux
- 딥러닝
- Pandas
- 티스토리
- Blog
- 매틀랩
- 블로그
- Visualization
- 시각화
- MySQL
- 리눅스
- SQL
- Tistory
Archives
- Today
- Total
pbj0812의 코딩 일기
[PYTHON] decorator 사용 본문
0. 목표
- python에서 decorator 사용법 익히기
1. 실습
1) 가정
- 인사 바른 친구가 온 가족에게 인사를 하는 함수를 제작
def say_father():
print("hello")
print("father")
print("!!!")
def say_mother():
print("hello")
print("mother")
print("!!!")
def say_sister():
print("hello")
print("sister")
print("!!!")
def say_brother():
print("hello")
print("brother")
print("!!!")
2) 실행
- 예의 바르다.
say_father()
say_mother()
say_sister()
say_brother()
3) decorator 함수 제작
- 위 예제를 볼때, print("hello")와 print("!!!")는 각 함수마다 중복되므로 하나로 따로 빼면 경제적일 거 같다.
- 이 때, decorator를 사용한다.
def say_hello(function):
def decorated():
print("hello")
function()
print("!!!")
return decorated
4) 각 함수에 적용
@say_hello
def say_father():
print("father")
@say_hello
def say_mother():
print("mother")
@say_hello
def say_sister():
print("sister")
@say_hello
def say_brother():
print("brother")
5) 실행
- 동일한 결과 출력
- 적용되는 함수가 많아질수록 더욱 경제적임
say_father()
say_mother()
say_sister()
say_brother()
2. 참고
- 블로그(이 블로그를 보시면 더욱 정확한 정보를 얻을 수 있습니다.)
'ComputerLanguage_Program > PYTHON' 카테고리의 다른 글
[PYTHON] 전역변수(global) 사용하기 (0) | 2020.05.21 |
---|---|
[PYTHON] *args, **kwargs (0) | 2020.05.19 |
[PYTHON] jupyter notebook 내 magic 명령어 사용하기 (0) | 2020.05.13 |
[PYTHON] pivottablejs로 피벗테이블 만들기 (0) | 2020.05.12 |
[PYTHON] Django 페이지에 이미지 넣기(html 형식 유지) (0) | 2020.05.02 |
Comments