Computer Science, asked by devesh7944, 1 year ago

What is the use of lambda keyword in Python?

Answers

Answered by ckroyofficial
0

Ans-lambda operator or lambda function is used for creating small, one-time and anonymous function objects in Python. lambda operator can have any number of arguments, but it can have only one expression. It cannot contain any statements and it returns a function object which can be assigned to any variable.

regards

Similar questions