About 2,050,000 results
Open links in new tab
  1. language agnostic - What is a lambda (function)? - Stack Overflow

    Aug 19, 2008 · 6 As you can see from the snippet of Python, the function adder takes in an argument x, and returns an anonymous function, or lambda, that takes another argument y. That anonymous …

  2. What is a lambda expression, and when should I use one?

    Here is another really good reference which explains very well what are lambda expressions in C++: Microsoft.com: Lambda expressions in C++. I especially like how well it explains the parts of a …

  3. python - Why use lambda functions? - Stack Overflow

    I can find lots of stuff showing me what a lambda function is, and how the syntax works and what not. But other than the "coolness factor" (I can make a function in middle a call to another functi...

  4. How do add python libraries to AWS Lambda? - Stack Overflow

    Feb 7, 2023 · To use any 3rd party library in lambda you can use a lambda layer. install the dependency using following command pip3 install <your_package> -t . zip the package zip -r your_pkg_layer.zip . …

  5. Announcing LAMBDA - techcommunity.microsoft.com

    Dec 3, 2020 · LAMBDA Overview There are three key pieces of =LAMBDA to understand: LAMBDA function components Naming a lambda Calling a lambda function LAMBDA function components …

  6. What exactly is "lambda" in Python? - Stack Overflow

    Mar 8, 2011 · The lambda construct is a shorter way to define a simple function that calculates a single expression. The def statement can be inconvenient and make the code longer, broken up and harder …

  7. What is `lambda` in Python code? How does it work with `key` …

    I saw some examples using built-in functions like sorted, sum etc. that use key=lambda. What does lambda mean here? How does it work? For the general computer science concept of a lambda, see …

  8. AWS error from Python: No module named lambda_function

    Mar 19, 2019 · The console no longer asks you what handler name you want - it just sets it to "lambda_function.lambda_handler". So, you need to make sure your filename is …

  9. How to increase the maximum size of the AWS lambda deployment …

    Feb 11, 2019 · 61 I upload my lambda function sources from AWS codebuild. My Python script uses NLTK so it needs a lot of data. My .zip package is too big and an RequestEntityTooLargeException …

  10. what is the difference for python between lambda and regular function ...

    Sep 4, 2012 · I'm curious about the difference between lambda function and a regular function (defined with def) - in the python level. (I know what is the difference for programmers and when to use each …