Computer Science, asked by divyasiva, 3 months ago

Some Examples for lambda function?

Answers

Answered by Yamini2110
0

Example of Lambda Function in python

Here is an example of lambda function that doubles the input value. In the above program, lambda x: x * 2 is the lambda function. Here x is the argument and x * 2 is the expression that gets evaluated and returned.

Answered by roy9428
0

Answer:

Example of Lambda Function in python Here is an example of lambda function that doubles the input value. In the above program, lambda x: x * 2 is the lambda function. Here x is the argument and x * 2 is the expression that gets evaluated and returned

Similar questions