줄기세포

[용어] 인자, 인수, parameter, argument 차이점 본문

프로그래밍 기본

[용어] 인자, 인수, parameter, argument 차이점

줄기세포(Stem_Cell) 2021. 4. 28. 20:00

Parameter - 한국어: 인자

Argument - 인수

Parameter와  Argument의 차이점은 무엇일까? (인자와 인수의 차이점은?)

-------------

def function (list input_list):
	return input_list
    


students=['hans','mike','kathy']
function ( students )

def function(함수정의)에 사용된 변수인 input_list는 인자(parameter)값이고,

(정의된) 함수를 사용(호출)할 때, 받는 변수를 인수(argument)이다.

'프로그래밍 기본' 카테고리의 다른 글

[프로그래밍 폰트 추천 - D2coding]  (0) 2021.11.17
Comments