0
[Question on Desc] Lambda vs def
Are the lambdas function are just a simpler way to write define function? Or there's more difference between them?
1 Réponse
+ 3
A lambda function can only contain one expression, so some calculation that immediately becomes the return value. So you have less flexibility with them.
Mostly you use them in cases where you for example have to pass a function to another function, but you need it only this one time, and it's not too complicated.