+ 1
What is a Lambda Function in Python
3 ответов
+ 4
Didn't understand the lambda function?? If so, see the comments and try it your self too.
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2460/?ref=app
+ 2
Using lambda you can create function without any name.
+ 2
Deepak Kumar
In Python, a lambda function is a single-line function declared with no name, which can have any number of arguments, but it can only have one expression. Such a function is capable of behaving similarly to a regular function declared using the Python's def keyword