Functions Flashcards
Arguments
positional, keyword
variable-length (varargs):
*args, **kwargs
actual parameters
Parameters
(pos, /, pos_or_kw, *, kw)
required
optional
formal parameters
PEP 570
Parameters order
non-default parameters, default parameters
Arguments order
positional, keyword
Lambda
bound variable
single expression
no type annotations
argument to higher-order function
key function in sort
Global Scope
global variable
global keyword
module scope
global variables are available from any scope except built-in
Local Scope
declared inside function
available within the function
Nonlocal Variable
nonlocal keyword
used in nested functions
defined in an outer (enclosing) scope but not in the global scope
Enclosing Scope
scope of outer function
nonlocal scope
Built-in Scope
special reserved keywords
__builtins__ module
LEGB
Local
Enclosing
Global
Built-in
First-Class Function
- assign to variable
- pass as an argument
- return from function
first-class citizen
Python has first-class functions
Higher-Order Function
a function that can take other functions as arguments or return functions as results
functions that work on other functions
map, filter
Free Variable
variable that is used in a code block but not defined there
in closure defined in enclosing scope
can be nonlocal
can be global if the nearest enclosing scope contains a global statement
Closure
function that retains access to variables from the enclosing scope even after the outer function has finished executing
function.__closure__
closure factory
Decorator
function/callable that takes a function/callable and returns a function/callable
def decorator(func): def wrapper(*args, **kwargs): ... result = func(*args, **kwargs) ... return result return wrapper
allow to extend and modify behavior of a callable without permanently modifying callable itself
Pie-Decorator
@decorator def func: ...
func = decorator(func)
Decorator with optional arguments
def name(_func=None, *, key1=value1, key2=value2, ...): def decorator_name(func): ... if _func is None: return decorator_name else: return decorator_name(_func)
Top-level code
first user-specified module that starts running
__name__ == ‘__main__’
entry point
Decorator with arguments
def name(args): def decorator_name(func): ... return decorator_name
Functools Wraps
functools.update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATES)
update wrapper function to look like wrapped function
adds __wrapped__ to wrapper that refers to function being wrapped
metadata of original function
@functools.wraps(wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATES)
from functools import wraps def decorator(func): @wraps(func) def wrapper(*args, **kwargs): ...
__name__
for debugging