Python Lambda Functions

- Create a lambda function
Anonymous functions in Python are called Lambda functions. Typical functions are in Python are defined using the def keyword. Anonymous functions are defined using the lambda keyword.
1) Create a lambda function

2) Use a lambda function within the map function
Lambda functions are typically used with the built in functions map() and filter(). The map() function can be used to apply the lambda function to every item on an iterable. (list, tuple, etc..).

3) Use a lambda function within the filter function
The filter function can be used to create an iterable based on true values in the lambda.
