로딩
티스토리 데이터 처리 중입니다.

Python Training Day 13. Lambda functions

 Python Training Day 13. Lambda functions

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.....