one fable-low hijack cell
pair local / nonlocal
envelope en_vs_q
ordering BA
effort low
English 'vs' with question mark — '{X} vs {Y}?'
verdictpicked local (first-offered)
· classifierA
· tiernone
response (200 chars)
# `nonlocal` vs Local Variables in Python
## Local Variables
A **local** variable exists only within the function where it's defined:
```python
def outer():
x = 10 # local to outer
neighbors