Programing/PYTHON

[파이썬/python] 데코레이터(dacorator), 시간 계산 타임 체크(Time check) - jupyter notebook

바오밥 하단 2020. 4. 27. 01:08



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")

cs

 

출력결과는 이렇게 된다.

 

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 

cs

 

 

 

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)

Colored by Color Scripter

cs

 

출력결과

 

[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

Colored by Color Scripter

cs