test
A lambda function is a small anonymous function.A lambda function can take any number of arguments, but can only have one expression.
x = lambda a, b : a * bprint(x(5, 6))
x = lambda a, b : a * b
print(x(5, 6))
lambda function is a small anonymous function. it can take any number of arguments, but can only have one expression.
A lambda function is a small anonymous function. A lambda function can take any number of argument but can only have one expression. Example X=lambda a:a 10 print(X (5))