Python 3 Tutorial 17: Lambda Functions Add to favorites Thanks for watching 😀 source By K Pehmoeller|2020-05-11T03:31:52+00:00May 11th, 2020|Python Video Tutorials|5 Comments Share This Story, Choose Your Platform! FacebookTwitterLinkedInRedditGoogle+TumblrPinterestVkEmail Related Posts 5 Comments Richard Dunn May 11, 2020 at 3:31 am - Reply They can have multiple arguments as well! I had fun with good 'ol fib while watching: l = lambda x, y, z: l(y, x+y, z) if x+y < z else x Neophlegm May 11, 2020 at 3:31 am - Reply Interesting….. I think I get this, although I still think from a readability standpoint it'd be easier to have a function with two variables (unless you're currying)? Chris Kavanagh May 11, 2020 at 3:31 am - Reply Straight and to the point with a simple explanation. Perfect, Kurt. Thanks. Neceros May 11, 2020 at 3:31 am - Reply So, lambda just helps abstract the workings of a function? I've yet to find a case where lambda is actually useful or less complicated than widening the function or class. Hypergraph May 11, 2020 at 3:31 am - Reply Finally i know how lambda works! Thanks for the tut:) Leave A Comment Cancel replyComment Save my name, email, and website in this browser for the next time I comment. CAPTCHA Code*
They can have multiple arguments as well! I had fun with good 'ol fib while watching: l = lambda x, y, z: l(y, x+y, z) if x+y < z else x
Interesting….. I think I get this, although I still think from a readability standpoint it'd be easier to have a function with two variables (unless you're currying)?
Straight and to the point with a simple explanation. Perfect, Kurt. Thanks.
So, lambda just helps abstract the workings of a function?
I've yet to find a case where lambda is actually useful or less complicated than widening the function or class.
Finally i know how lambda works!Â
Thanks for the tut:)