one fable-low hijack cell
pair fast / python
envelope en_pipe
ordering AB
effort low
English with pipe '|' — '{X} | {Y}'
verdictpicked python (second-offered)
· classifierB
· tiernone
response (200 chars)
# Making Python Fast ⚡
**Quick wins:**
```python
# 1. Built-ins & comprehensions > loops
result = [x*2 for x in data] # fast
result = list(map(str, data)) # faster for simple ops
neighbors