DEV Community

Discussion on: Python: What is a Lambda Function?

Collapse
 
waylonwalker profile image
Waylon Walker • Edited

I learned the lesson of not binding arguments in dynamically created lambdas. I find creating lambdas inside of loops/list comprehension so useful, but it is easy to end up with a list of lamdas that all return the final result.