def add(a, b):
print(a+b)
plus = add
plus(1, 2)
def calc(op, a, b):
op(a, b)
def add(a, b):
print(a+b)
def multi(a, b):
print(a*b)
calc(add, 1, 2)
calc(multi, 3, 4)
23. 내부 함수와 Closure (0) | 2023.10.13 |
---|---|
21. 파이썬 Lambda (0) | 2023.10.13 |
20. Filter, Map, Reduce (0) | 2023.10.13 |
댓글 영역