함수 함수 >>> def sum(*args):… sum = 0… for i in args:… sum = sum + i… return sum… 위와 같은 형태로 sum이라는 함수를 만들었습니다. def 함수명(인수): 이렇게