mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-21 12:44:00 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
514 B
514 B
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: