Lambda creates a small anonymous function in one line: python square = lambda x: x * x print(square(5)) # 25 This is equivalent to: python def square(x): return x * x Lambda functions can only contain a single expression.
No statements, no multiple lines. They're useful when you need a small function quickly, especially when passing functions as arguments.