Python/Functions 7 min

Functions

Package logic behind a name, with defaults and returns.

deflambdadefaults

def defines a function. Parameters can have defaults, and the function hands a value back with return.

python · editable
loading editor…

Functions are values: you can pass them to sorted, map or filter. A short throwaway function can be written inline as a lambda.

python · editable
loading editor…

Never use a mutable default like def f(items=[]) — the list is shared across calls. Use None and create it inside instead.