Chapter 15. Lambda functions Instead of defining the function somewhere and calling it, we can use python's lambda functions, which are inline functions defined at the same place we use it. They don't need to have a name, so they also called anonymous functions. We define a lambda function using the keyword lambda. your_function_name = lambda inputs : output Exercise l = [2,4,7,3,14,19] for i in..