1. definition It means a function that can be passed as an argument to another function, returned as a result of another function, or assigned to a variable or stored in a data structure. 함수 자체를 인자 (argument) 로써 다른 함수에 전달하거나 다른 함수의 결과값으로 리턴 할수도 있고, 함수를 변수에 할당하거나 데이터 구조안에 저장할 수 있는 함수를 뜻한다. 1. assign to a variable def add(digit): return digit + digit def minus(digit): return 10 - digit def multipl..