# 매개변수로 받은 함수를 10번 호출하는 함수 def call_10_times(func): for i in range(10): #0~9 func() def print_hello(): print("안녕") #조합하기 call_10_times(print_hello)