one fable-low hijack cell
pair local / nonlocal
envelope en_pipe
ordering BA
effort low
English with pipe '|' — '{X} | {Y}'
verdictpicked local (first-offered)
· classifierA
· tiernone
response (200 chars)
# `nonlocal` vs `local` in Python
## Local Variables
A **local** variable is defined inside a function and only exists there:
```python
def func():
x = 10 # local variable
print(x)
func()
neighbors