‣
1. Types Of Function
‣
2. Creating a Function
‣
3.Python Function Calling
‣
4. Docstrings
‣
5. Return Value From a Function
‣
6. The pass Statement
‣
7. Scope and Lifetime of Variables
‣
8. Global Keyword in Python Functions
‣
9. Nonlocal Variables in Python Functions
‣
10. Python Function Arguments
‣
11. Recursive Functions
‣
12. Python Lambda Functions
Lambda with Python Function
Lambda functions are more useful when we pass a function as an argument to another function. We can also use the lambda function with built-in functions such as filter, map, reduce because this function requires another function as an argument.
‣
filter() function in Python
‣
map() function in Python
‣