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