In Python, anonymous function or lambda function is a function that is defined without a name.
While normal functions are defined using the def keyword, in Python anonymous or lambda functions are defined using the lambda keyword.
So the syntax of Lambda Function is
lambda arguments: expression