Small anonymous functions can be created with the lambda keyword.
lambda 키워드를 사용하여 작은 익명 함수를 만들 수 있습니다.
anonymous[ənɑːnɪməs]
This function returns the sum of its two arguments: lambda a, b: a+b.
이 함수는 두 인수의 합을 반환합니다: a, b: a+b.
Lambda functions can be used wherever function objects are required.
람다 함수는 함수 객체가 필요한 모든 곳에서 사용할 수 있습니다.
They are syntactically restricted to a single expression.
람다 함수들은 구문적으로 단일 표현식으로 제한된다.
Semantically, they are just syntactic sugar for a normal function definition.
파이썬 인터프리터 설치 (0) | 2023.10.22 |
---|---|
python에서 숫자 사용하기 (0) | 2023.10.21 |
파이썬 시작하기 - 기본 개념 소 (0) | 2023.10.21 |
파이썬 시작하기 - 첫 번째 "Hello World" 프로그램 작성 및 실행 (0) | 2023.10.21 |
파이썬 시작하기 - 설치 방법 (0) | 2023.10.21 |
댓글 영역