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

    Aug 19, 2008 · Lambda calculus codifies the correct way to do these substitutions. Given that y = x−1 is a valid rearrangement of the second equation, this: λ y = x−1 means a function …

  2. 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 …

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

    Mar 8, 2011 · Lambda is more of a concept or programming technique then anything else. Basically it's the idea that you get a function (a first-class object in python) returned as a result …

  4. 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 …

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

    Feb 7, 2023 · To deploy a AWS Lambda function using AWS Serverless Application Model (SAM), you need to follow these steps: Create a SAM template: This is a YAML file that …

  6. python - List comprehension vs. lambda + filter - Stack Overflow

    Invalid comparison. First, you are not passing a lambda function to the filter version, which makes it default to the identity function. When defining if not None in the list comprehension you are …

  7. Using SSL Certificates within Lambda - Stack Overflow

    Aug 18, 2022 · I would like to learn of alternative secure solutions to manage and use SSL certs within Lambda functions/applications What I have: Certificates are stored within Parameter …

  8. 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 …

  9. Updating Lambda function to a new runtime - Stack Overflow

    Apr 22, 2022 · aws --region REGION lambda list-functions \ --query 'Functions[?Runtime == `python3.6`].FunctionName' That command will return a list of function names that have the …

  10. How to pass a querystring or route parameter to AWS Lambda …

    Jul 10, 2015 · The Lambda function expects JSON input, therefore parsing the query string is needed. The solution is to change the query string to JSON using the Mapping Template.