From Lambda to Def: Choosing the Right Function Type in Python — When and How to Use Them

Dev Balaji
3 min readJun 14, 2024

--

What are Lambda Functions?

Lambda functions, also known as anonymous functions, are small, unnamed functions defined using the lambda keyword. They are typically used for short, simple operations or for functions that are not going to be reused elsewhere. The syntax of a lambda function is:

lambda arguments: expression

arguments: The input parameters for the function.
expression: A single expression that is evaluated and returned.


EXAMPLE:
add = lambda x, y: x + y
print(add(2, 3)) # Output: 5

Differences Between Lambda Functions and Regular Functions

Lambda functions differ from regular functions defined using def in several ways:

  1. Syntax and Structure:
  • Lambda functions are single-line functions defined using the lambda keyword.
  • Regular functions are defined using the def keyword and can consist of multiple lines and statements.
# Lambda function
square = lambda x: x ** 2

# Regular function
def square(x):
return x ** 2

2. Naming:

  • Lambda functions are anonymous, meaning they do not have a name unless assigned to a variable.
  • Regular functions have a defined name when created using the def keyword.

3. Complexity:

  • Lambda functions are limited to a single expression and are usually used for simple operations.
  • Regular functions can contain multiple statements, loops, conditions, and more complex logic.

4. Readability:

  • Lambda functions can be less readable, especially for complex expressions.
  • Regular functions are generally more readable and maintainable, especially for more complex logic.

When to Use Lambda Functions

Lambda functions are ideal for use cases where a small, simple function is required for a short period, especially when used as an argument to higher-order functions like map(), filter(), or sorted(). Examples include:

With map():

numbers = [1, 2, 3, 4, 5]
squared = map(lambda x: x ** 2, numbers)
print(list(squared)) # Output: [1, 4, 9, 16, 25]

With filter():

numbers = [1, 2, 3, 4, 5]
even = filter(lambda x: x % 2 == 0, numbers)
print(list(even)) # Output: [2, 4]

With sorted():

words = ['banana', 'apple', 'cherry']
sorted_words = sorted(words, key=lambda x: len(x))
print(sorted_words) # Output: ['apple', 'banana', 'cherry']

When to Use Regular Functions

Regular functions are more appropriate when:

  1. Complex Logic: The function logic spans multiple lines or involves complex operations.
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n - 1)

2. Reusability: The function needs to be reused multiple times across different parts of the code.

def add(a, b):
return a + b

result1 = add(2, 3)
result2 = add(5, 7)

3. Documentation: The function requires docstrings or extensive comments to explain its purpose and usage.

def greet(name):
"""
This function greets the person whose name is passed as a parameter.
"""
return f"Hello, {name}!"

Detailed Example

To illustrate the differences and use cases, consider a scenario where you need to process a list of dictionaries representing employees, filtering out those who are above a certain age and then sorting them by their names.

Using Lambda Functions:

employees = [
{'name': 'John', 'age': 25},
{'name': 'Jane', 'age': 30},
{'name': 'Dave', 'age': 35},
{'name': 'Daisy', 'age': 40}
]

# Filter employees older than 30
filtered = filter(lambda x: x['age'] > 30, employees)

# Sort by name
sorted_employees = sorted(filtered, key=lambda x: x['name'])

print(list(sorted_employees))
# Output: [{'name': 'Dave', 'age': 35}, {'name': 'Daisy', 'age': 40}]

Using Regular Functions:

def is_older_than_30(employee):
return employee['age'] > 30

def get_name(employee):
return employee['name']

employees = [
{'name': 'John', 'age': 25},
{'name': 'Jane', 'age': 30},
{'name': 'Dave', 'age': 35},
{'name': 'Daisy', 'age': 40}
]

# Filter employees older than 30
filtered = filter(is_older_than_30, employees)

# Sort by name
sorted_employees = sorted(filtered, key=get_name)

print(list(sorted_employees))
# Output: [{'name': 'Dave', 'age': 35}, {'name': 'Daisy', 'age': 40}]

Conclusion

In summary, lambda functions provide a concise way to create small, unnamed functions on-the-fly, especially useful in functional programming scenarios. Regular functions, defined using def, are more versatile and suitable for more complex, reusable, and maintainable code. The choice between using a lambda function or a regular function depends on the complexity, reusability, and readability requirements of the task at hand.

--

--

Dev Balaji
Dev Balaji

Written by Dev Balaji

🚀 Tech Enthusiast | 🌟 Mastering JavaScript & Frameworks | 💡 Sharing Tips & Tricks | 📘 Aspiring Blogger & Architect | 🐍 Python Practitioner

No responses yet