β All terms Β· Functions
Lambda
An anonymous one-line function: `lambda x: x*2`. Use for short callbacks; prefer `def` when readable.
Learn this interactively:
Open lesson lesson-69 βRelated β Functions
FunctionNamed reusable block of code. Defined with `def`. First-class β you can pass funβ¦Default argumentParameter with a fallback value: `def f(x=10)`. Beware mutable defaults β `def fβ¦*args, **kwargsCapture variable positional and keyword arguments. Lets a function accept any siβ¦DecoratorA higher-order function that wraps another to add behavior β logging, caching, aβ¦ClosureAn inner function that captures variables from its enclosing scope. The capturedβ¦