Login
Remember
Register
Ask a Question
What are Lambda Functions in Python?
+1
vote
asked
Sep 26, 2022
in
Machine Learning
by
Robin
What are Lambda Functions in Python?
lambda-function
python
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 26, 2022
by
Robin
Python, anonymous function is a function defined without a name. When normal functions are defined using a defined keyword, Python is defined as anonymous functions using the Lambda word. Therefore, anonymous functions are called Lambda functions.
...