docs: shorten the description for clarity. (#29020)

Change the first two sentences from
"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 also known as anonymous functions."
 to instead read:
"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). "
This commit is contained in:
Jean-Paul Wilson
2019-04-06 13:34:47 +02:00
committed by The Coding Aviator
parent f5f6f0df04
commit 1a20fbff6e

View File

@ -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.
<a href='https://github.com/freecodecamp/guides/tree/master/src/pages/python/lambda-expressions/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
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.