Lambda functions are defined using the lambda keyword followed by a list of parameters, a colon, and an expression. The expression is evaluated and returned. Here's a simple example in Python: lambda x: x + 1 This lambda function takes an input x and returns x + 1.