상세 컨텐츠

본문 제목

파이썬 Tutorial - More on Defining Functions 6

프로그래밍 언어/파이썬

by 별을 보는 사람 2023. 10. 22. 12:27

본문

반응형

 

Lamda Expressions

Small anonymous functions can be created with the lambda keyword.

lambda 키워드를 사용하여 작은 익명 함수를 만들 수 있습니다.

anonymous[ənɑːnɪməs]

  • 1.익명인
  • 2.특색 없는

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.

 

 

반응형

관련글 더보기

댓글 영역