none_doce(5)
를 해야 진짜 실행된다. (불편.. 그래서 decorator
실행됨)def smile():
print('^^')
def angry():
print('ㅡㅡ^')
def love():
print('love')
copyright
를 출력하는 걸 추가해야한다고 한다.from multipledispatch import dispatch
@dispatch(list)
def gen(arg_list: list):
print(arg_list)
@dispatch(str)
def gen(string: str):
print(string)
if __name__ == '__main__':
gen([1,2,3,4,5])
gen('hello')