VOOZH about

URL: https://thenewstack.io/what-are-python-lambda-functions-and-how-do-you-use-them/

⇱ What Are Python Lambda Functions and How Do You Use Them? - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2024-04-01 05:00:53
What Are Python Lambda Functions and How Do You Use Them?
tutorial,
Python / Software Development

What Are Python Lambda Functions and How Do You Use Them?

This tutorial teaches you about Python Lambda functions and how to use them.
Apr 1st, 2024 5:00am by Jack Wallen
👁 Featued image for: What Are Python Lambda Functions and How Do You Use Them?
Feature image via Unsplash.
Although Python is generally a very easy-to-learn and easily comprehended language, it doesn’t mean there aren’t concepts that can tend to be a bit more challenging. One such concept is the Lambda function. These functions (also called anonymous functions) are similar to those functions you build yourself but do not have a name. But what are these functions for? Simply put, you use Lambda functions when you want to write a function that only contains simple expressions. You might have an expression you need to use that doesn’t need a full-blown function to perform properly or will only be used once in your code/application. That’s when Lambda functions come into play. Lambda functions consist of only three parts: the keyword (which is lambda), a placeholder to hold the value to be passed to the expression, and the expression. The format of a Lambda function looks like this: lambda arguments : expression In the example above, arguments is the value placeholder. To illustrate how handy a Lambda function can be, consider that we want to write a function that will add 20 to the variable a and print the results. That function might look like this:
x = lambda a : a + 20
Let me explain. What we’re doing is defining the variable x with the Lambda a function that adds 20 to the a variable. Of course, we have to define a, which we can do within the print() function like so:
print(x10))
The entire code looks like this:
x = lambda a : a + 20
print(x10))
If you were to run the above code, the result would be 30. Why? Because we’ve defined our Lambda function such that it adds the value 20 to a and then we define a as 10. 20+10=30 We can also create a Lambda function that includes two variables (let’s say x and y) and multiply them together. That Lambda function would look like this:
a = lambda x, y : x * y
What we did above was define a with our new Lambda function that then multiplies x * y. We can then define x and y in our print function like so:
print(a(10, 50))
The entire code looks like this:
a = lambda x, y : x * y
print(a(10, 50))
Run the above code and the result would be 500. 10 * 50 = 500 Neat. Let’s take this one step further. Let’s add multiple variables together in a Lambda function. That might look like this:
x = lambda a, b, c : a + b * c
print(x(10, 20, 30))
The result of the above is 610. But how do we effectively use Lambda functions within our code? Why don’t we define a function with a Lambda function and then call that function later in the code? To do this, we’re going to use the return statement, which is used to end the execution of a function call and return the results. Let’s first define a Lambda function that multiplies a times x that looks like this:
def myfunc(x):
    return lambda a : a * x
Next, we’re going to triple the value from myfunc(x) with the line:
tripler = myfunc(3)
What we’ve done above is called myfunc and defined x as 3 for the Lambda function. Our next line looks like this:
print(tripler(10))
What we’ve done here is define a (from our Lambda function) as 10, so we effectively have 10 times 3. The result (as expected) will be 30. Let’s compare the Lambda function to a standard function (so you can see how effective it can be). Consider this:
def a(x):
     return x * 10

print(a(3))
If we run the above, it will print out 30. But how would that work as a Lambda function? Like so:
a = lambda x : x * 10
print(a(3))
The above code would print out the same results, but we’ve only had to use 2 lines of code. Of course, if we wanted to create a function that would be used over and over within our code, we wouldn’t opt for a Lambda function. But for those functions that will only be used once, Lambda is the way to go. Why is this the case? Because our Lambda functions don’t have names and, without a name, they can’t be called later on.

Using Lambda Functions with Lists

You can also use Lambda functions with lists. This is accomplished using the filter() function, which uses a function and a list of arguments and makes it easy to filter out objects from the sequence that the function returns as true. Let’s say you want to return only the odd numbers from a list. We can do that with the Lambda function:
x : (x % 2 !=0)
What does that do? Simple. With the % operator it returns the remainder when the first operand is divided by the second and then != means does not equal. That function will return False if x is not even. Our list will be:
lista = [1, 3, 6, 9, 11, 16, 21, 24, 30, 31]
We then define odd_out with our Lambda function like this:
odd_out = list(filter(lambda x : (x % 2 != 0), lista))
We can then print the results with:
print(odd_out)
The entire code looks like this:
lista = [1, 3, 6, 9, 11, 16, 21, 24, 30, 31]

odd_out = list(filter(lambda x : (x % 2 != 0), lista))

print(odd_out)
If we run the above code, we get the following output: [1, 3, 9, 11, 21, 31] Only the odd numbers are printed. And that, my friends, is your introduction to Lambda functions in Python. These little ditties can come in very handy and even keep your code a bit cleaner.
TRENDING STORIES
Jack Wallen is what happens when a Gen Xer mind-melds with present-day snark. Jack is a seeker of truth and a writer of words with a quantum mechanical pencil and a disjointed beat of sound and soul. Although he resides...
Read more from Jack Wallen
SHARE THIS STORY
TRENDING STORIES
TNS owner Insight Partners is an investor in: Simply.
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.