다른 함수에서 호출되는 함수가 있어?(콜백 함수 Callback Function)

minsing-jin·2023년 12월 11일
0

결론

  • 직접 호출이 아닌 다른 함수에 의해 호출되는 함수이다.
  • 파라미터에 함수가 전달되고, 전달받은 함수를 호출해서 사용한다

예졔)

def callback_func(func):
	for i in range(5):
    	func(i)
        
def print_hello(num):
	print('hello', num)
    
callback_func(print_hello)

참고문헌
https://coding-yesung.tistory.com/20

profile
why not? 정신으로 맨땅에 헤딩하고 있는 코린이

0개의 댓글