+ 2
What is lamda function
what does lambda and filter does? where we can use it?
2 Antworten
+ 6
// Hi Sharath,
// the lambda is used to create a method with a single line
// For example :
// method = lambda x : x * x
// def method(x):
// return x * x
0
thanks for info..