# Lambdas Python Lambda Functions are anonymous function means that the function is without a name. As we already know that the def keyword is used to define a normal function in Python. Similarly, the lambda keyword is used to define an anonymous function in Python. Visit the following resources to learn more: - [@article@Lambdas in Python](https://www.w3schools.com/python/python_lambda.asp) - [@article@How to use Lambda functions](https://realpython.com/python-lambda/) - [@video@Python Lambda Functions](https://www.youtube.com/watch?v=KR22jigJLok)