Lambda functions allow short, anonymous functions.
square = lambda x: x ** 2\nprint(square(5))
add = lambda a, b: a + b\nprint(add(3, 7))