Files
developer-roadmap/roadmaps/python-data-analysis/content/lambda-functions@AzsZhpK-wuWtafVFJMhdY.md
T
Arik Chakma 274082fd77 feat: clean roadmap content and sync scripts (#10181)
* refactor: clean to roadmap content

* refactor: move shared helpers into scripts/lib
2026-07-28 05:45:17 +06:00

8 lines
514 B
Markdown

# Lambda Functions
Lambda functions are anonymous, single-expression functions defined with the `lambda` keyword. They are used for short, throwaway operations, particularly as arguments to functions like `map()`, `filter()`, and Pandas' `apply()`. For example: `df['col'].apply(lambda x: x * 2)`.
Visit the following resources to learn more:
- [@article@Python Lambda](https://www.w3schools.com/python/python_lambda.asp)
- [@video@Python Lambda Functions Explained](https://www.youtube.com/watch?v=HQNiSfb795A)