-
[Python] 람다 함수(Lambda)Python/Python Programming 2018. 4. 29. 00:33
이름없는 한줄짜리 함수. 한 줄의 간단한 함수가 필요한 경우 편리
lambda 인수 : < 구문 >
plus = lambda x, y : x + y print(plus(10, 20))
30
print((lambda x: x * x)(10))
100
func1 = [lambda x, y: x + y,lambda x, y: x - y ] print(func1[0](5,10)) print(func1[1](5,10))
15 -5
'Python > Python Programming' 카테고리의 다른 글
[Python] Remove list duplicates using set data type. (파이썬 집합 자료형(set)을 이용한 리스트 중복값 제거) (0) 2018.05.06 [Python] 파이썬 requests 모듈로 json 처리하기 (0) 2018.05.05 [Python] 한개의 요소만 갖는 튜플 데이터 타입 만들기 (0) 2018.05.05 [Python] 반복문(for, while)과 else (0) 2018.04.29 [Python] 객체 지향 프로그래밍 - __init__() 메소드를 정의하는 이유 (0) 2018.04.28 [Python] 호출자에게 반환 (Return문) (0) 2018.04.28 [Python] 중첩 함수 (Nested Function) (0) 2018.04.28 [Python] 가변 매개변수를 이용한 함수 활용 (0) 2018.04.28