one fable-low hijack cell
pair python / roots
envelope en_pipe
ordering AB
effort low
English with pipe '|' — '{X} | {Y}'
verdictpicked roots (second-offered)
· classifierB
· tiernone
response (200 chars)
# Roots in Python
## Square Root
```python
import math
math.sqrt(16) # 4.0
16 ** 0.5 # 4.0
math.isqrt(17) # 4 (integer square root, floor)
```
## Nth Roots
```python
x ** (1/3)
neighbors