Lambda function is an anonymous function. The function can have any number of parameters but in a single statement only. 

Example:

sum = lambda x, y : x+y

print(sum(4, 5))