diff --git a/guide/english/python/lambda-expressions/index.md b/guide/english/python/lambda-expressions/index.md index 14a10b763d..a951777700 100644 --- a/guide/english/python/lambda-expressions/index.md +++ b/guide/english/python/lambda-expressions/index.md @@ -3,8 +3,7 @@ title: Lambda Expressions --- ## Lambda Expressions -Lambda Expressions are ideally used when we have something simple to be done an we are more interested in quickly getting the job done rather than formally naming the function. Lambda expressions are a short way to declare small and anonymous functions (it is not necessary to provide a name for lambda functions) in a concise way. -Help our community expand it. +Lambda Expressions are used when an operation only has to be performed once, meaning that there is no need for defining a function as it will not be used again. Lambda expressions also known as anonymous functions, as they are not named (defined). Lambda functions can contain only one expression, so they are not best suited for functions with control-flow statements.