1. Argument(인자) : function 괄호 안에 넣어주는 인자 (함수 실행할 때 인자를 바꿔가면서 넣어줄 수 있다.) -function에 데이터(input)를 주는 것 def carculator(a, b): #carculator가 함수 이름이고 a랑 b가 인자 print(a + b) carculator(2, 3) #a와 b라는 인자의 값을 정해줌. def introduce(who, where): #introduce가 함수 이름이고 who랑 where이 인자 print("안녕 내 이름은", who, "나는", where, "사람이야.") introduce("mirimeter", "korea") #arguments에 값들을 넣어준다. *default value : 인수를 정해주지 않으면 에러가 생..