one fable-low hijack cell
pair python / roots
envelope en_arrow
ordering AB
effort low
English with arrow '→' — '{X} → {Y}'
verdictpicked roots (second-offered)
· classifierB
· tiernone
response (200 chars)
# Finding Roots in Python
## 1. Square / nth roots
```python
import math
math.sqrt(16) # 4.0
16 ** 0.5 # 4.0
27 ** (1/3) # 3.0 (cube root)
math.isqrt(17) # 4 (integer square
neighbors