نحو(Syntax)



arguments lambda: بیان


عبارت اجرا می شود و نتیجه برمی گردد:




مثال


A lambda function that adds 10 to the number passed in as an argument, and
print the result:



x = lambda a : a + 10
print(x(5))





توابع لامبدا می توانند هر تعداد آرگومان را دریافت کنند:




مثال


A lambda function that multiplies argument a with argument b and print the
result:



x = lambda a, b : a * b
print(x(5, 6))





مثال


A lambda function that sums argument a, b, and c and print the
result:



x = lambda a, b, c : a + b + c
print(x(5, 6,
2))