From b9e22a6bbb0b95e3dd265012cd93889c893c8275 Mon Sep 17 00:00:00 2001 From: Austin Songer Date: Tue, 21 Jan 2020 20:01:23 +0000 Subject: [PATCH] Python Question: Lambda --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 93db462..5e33ed5 100644 --- a/README.md +++ b/README.md @@ -3246,6 +3246,16 @@ Generally, every compiling process have a two steps.
What is Lambda? How is it used?
+ +Lambda is an anonymous function is known as a lambda function. This function can have any number of parameters but, can have just one statement. + +Example: +``` +1 a = lambda x,y : x+y +2 print(a(5, 6)) +Output: 11 +``` +
#### Properties