DEV Community

Cover image for Python Tricks Part 2 🐍
Mahmoud EL-kariouny
Mahmoud EL-kariouny

Posted on • Updated on

Python Tricks Part 2 🐍

Lambdas Are Single-Expression Functions

  • The lambda keyword in Python provides a shortcut for declaring small anonymous functions.
  • Lambda functions behave just like regular functions declared with the def keyword.
  • They can be used whenever function objects are required.

For example, this is how you’d define a simple lambda function carrying
out an addition:

>>> add = lambda x, y: x + y
>>> add(5, 3)
8
Enter fullscreen mode Exit fullscreen mode

You could declare the same add function with the def keyword, but it would be slightly more verbose:

>>> def add(x, y):
...    return x + y
>>> add(5, 3)
8
Enter fullscreen mode Exit fullscreen mode

Now you might be wondering, Why the big fuss about lambdas?

If they’re just a slightly more concise version of declaring functions with def, what’s the big deal?

Take a look at the following example and keep the words function expression in your head while you do that:

>>> (lambda x, y: x + y)(5, 3)
8
Enter fullscreen mode Exit fullscreen mode

Okay, what happened here?

I just used lambda to define an “add” function inline and then immediately called it with the arguments 5 and 3.

Conceptually, the lambda expression lambda x, y: x + y is the
same as declaring a function with def, but just written inline.

The key difference here is that I didn’t have to bind the function object to a name before I used it.

I simply stated the expression I wanted to compute as part of a lambda, and then immediately evaluated it by calling the lambda expression like a regular function.

There’s another syntactic difference between lambdas and regular
function definitions.

Lambda functions are restricted to a single expression.

This means a lambda function can’t use statements or annotations—not even a return statement.

How do you return values from lambdas then?

Executing a lambda function evaluates its expression and then automatically returns the expression’s result, so there’s always an implicit return statement.

That’s why some people refer to lambdas as single expression
functions.

Lambdas You Can Use

  • When should you use lambda functions in your code?
  • Technically, any time you’re expected to supply a function object you can use a lambda expression.
  • And because lambdas can be anonymous, you don’t even need to assign them to a name first.

This can provide a handy and “unbureaucratic” shortcut to defining a function in Python.

My most frequent use case for lambdas is writing short and concise key funcs for sorting iterables by an alternate key:

>>> tuples = [(1, 'd'), (2, 'b'), (4, 'a'), (3, 'c')]
>>> sorted(tuples, key=lambda x: x[1])
[(4, 'a'), (2, 'b'), (3, 'c'), (1, 'd')]
Enter fullscreen mode Exit fullscreen mode

In the above example, we’re sorting a list of tuples by the second value in each tuple.

In this case, the lambda function provides a quick way to modify the sort order.

Here’s another sorting example you can play with:

>>> sorted(range(-5, 6), key=lambda x: x * x)
[0, -1, 1, -2, 2, -3, 3, -4, 4, -5, 5]
Enter fullscreen mode Exit fullscreen mode

Both examples I showed you have more concise implementations in
Python using the built-in operator.itemgetter() and abs() functions.

But I hope you can see how using a lambda gives you much
more flexibility.

Want to sort a sequence by some arbitrary computed key?
No problem. Now you know how to do it.

Here’s another interesting thing about lambdas:

Just like regular nested functions, lambdas also work as lexical closures.

What’s a lexical closure?

It’s just a fancy name for a function that remembers the values from the enclosing lexical scope even when the program flow is no longer in that scope.

Here’s a (fairly academic) example to illustrate the idea:

>>> def make_adder(n):
...     return lambda x: x + n

>>> plus_3 = make_adder(3)
>>> plus_5 = make_adder(5)

>>> plus_3(4)
7
>>> plus_5(4)
9
Enter fullscreen mode Exit fullscreen mode

In the above example

The x + n lambda can still access the value of n even though it was defined in the make_adder function (the enclosing scope).

Sometimes, using a lambda function instead of a nested function
declared with the def keyword can express the programmer’s intent
more clearly.

But to be honest, this isn’t a common occurrence—at least not in the kind of code that I like to write. So let’s talk a little more about that.

But Maybe You Shouldn’t…

  • On the one hand, I’m hoping this chapter got you interested in exploring Python’s lambda functions.
  • On the other hand, I feel like it’s time to put up another caveat
  • Lambda functions should be used sparingly and with extraordinary care.

I know I’ve written my fair share of code using lambdas that looked “cool” but were actually a liability for me and my coworkers.

If you’re tempted to use a lambda, spend a few seconds (or minutes) to think if it is really the cleanest and most maintainable way to achieve the desired result.

For example, doing something like this to save two lines of code is just silly.

Sure, technically it works and it’s a nice enough “trick.”

But it’s also going to confuse the next gal or guy that has to ship a bugfix under a tight deadline:

# Harmful:

>>> class Car:
...      rev = lambda self: print('Wroom!')
...      crash = lambda self: print('Boom!')

>>> my_car = Car()
>>> my_car.crash()
'Boom!'

Enter fullscreen mode Exit fullscreen mode

I have similar feelings about complicated map() or filter() constructs using lambdas.

Usually it’s much cleaner to go with a list comprehension or generator expression:

# Harmful:
>>> list(filter(lambda x: x % 2 == 0, range(16)))
[0, 2, 4, 6, 8, 10, 12, 14]

# Better:
>>> [x for x in range(16) if x % 2 == 0]
[0, 2, 4, 6, 8, 10, 12, 14]
Enter fullscreen mode Exit fullscreen mode

If you find yourself doing anything remotely complex with lambda
expressions, consider defining a standalone function with a proper
name instead.

Saving a few keystrokes won’t matter in the long run, but your colleagues (and your future self) will appreciate clean and readable code more than terse wizardry.

Key Takeaways

  • Lambda functions are single-expression functions that are not necessarily bound to a name (anonymous).
  • Lambda functions can’t use regular Python statements and always include an implicit return statement.
  • Always ask yourself: Would using a regular (named) function or a list comprehension offer more clarity?

Connect with Me 😊

Top comments (1)

Collapse
 
paddy3118 profile image
Paddy3118

Great article. I'd just stress that functions are statements, lambdas are expressions. Expressions can better fit some nooks - as shown.
If you assign a lambda expression to a variable then you would most likely be better using a function definition instead - also as shown :-)