Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Python: Lambdas

Anybody knows of a good book, tutorial, post, course, etc.. that reasonably details how to properly use lambdas with python.

Thank you folks.

1 Answer

If you want to learn functional programming in Python—which includes lambdas—I recommend this course on Treehouse. Also, after searching the python.org website, I found this page specifically about lambdas. However, it doesn't really explain why or when to use them, so I suggest taking the course instead.

Lambdas, as tc11 said, are simply anonymous functions. They are convenient for whipping up a simple, short function to pass into another function. For example...

def apply_to_all(func, list):
    new_list = []
    for i in list:
        new_list.append(func(i))
    return new_list

# Waste of typing
def add1(x):
    return x+1
apply_to_all(add1, [1, 2, 3]) 

apply_to_all(lambda x: x+1, [1, 2, 3])  # More concise.