Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
559 B

# 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)