1. 데코레이터(decorator)을 사용하는 간단한 실습이다.
__init__을 할 때 문구를 만들어주고 함수의 시작과 끝에 문구를 출력한다.
my_function에서 들어온 이름에게 인사를 한다.
ln[1] |
class verbose: def __init__(self, f): print("initializing verbose.") self.func = f
def __call__(self,str1): print("begin", self.func.__name__) self.func(str1) print("end",self.func.__name__,"\n") @verbose def my_function(str1): print("hello,",str1, "!") print("program start\n") my_function("Mickey") my_function("Minnie") my_function("Donald") |
출력결과는 이렇게 된다.
|
initializing verbose. program start begin my_function hello, Mickey ! end my_function begin my_function hello, Minnie ! end my_function begin my_function hello, Donald ! end my_function |
2. 시간 계산 타임 체크(Time check)
원하는 함수의 실행 시간을 체크할 수 있는 함수이다.
실행하는 날을 출력하고 start - end로 실행시간을 출력한다.
원하는 func 위에 @checkTime을 붙여주며 되는데 인자를 조금씩 바꾸면서 다른 함수를 넣어도 된다.
ln[1] |
def checkTime(func): import time from time import localtime, strftime def newFunc(*args, **kwargs): time_str = strftime("[%Y-%m-%d %H:%M]", localtime()) print(time_str) start = time.time() func(*args,**kwargs) end = time.time() print("\n 실행시간은: ", end - start) return newFunc @checkTime def aFunc(): for i in range(1,101): print(i,end=' ') @checkTime def bFunc(start,end): for i in range(start,end+1): print(i,end=' ')
aFunc() bFunc(101,202) |
출력결과
|
[2019-09-30 11:58] 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 실행시간은: 0.0045871734619140625 |
'Programing > PYTHON' 카테고리의 다른 글
[파이썬/python] 요일 찾기, 윤년 구하기 - jupyter notebook (1) | 2020.04.28 |
---|---|
[파이썬/python] 랜덤 숫자 lamda함수, 사칙연산 - jupyter notebook (0) | 2020.04.26 |
[파이썬/python] 문자의 개수 구하기, 대소문자 변경하기 - jupyter notebook (0) | 2020.04.25 |
[파이썬/python] 입력받은 문장 거꾸로출력하기 - 문자별, 문장별 역순 (0) | 2020.04.22 |