one fable-low hijack cell
pair global / python
envelope en_vs
ordering AB
effort low
English 'vs' framing — '{X} vs {Y}'
verdictpicked global (first-offered)
· classifierA
· tiernone
response (200 chars)
# Global vs Local Variables in Python
## Local Variables
Defined inside a function; only accessible there.
```python
def my_func():
x = 10 # local
print(x)
my_func() # 10
print(x)
neighbors