one fable-low hijack cell
pair python / roots
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
# Python: `^` and Roots
## Common Gotcha: `^` is NOT exponentiation!
In Python, `^` is the **bitwise XOR** operator, not "raised to the power":
```python
2 ^ 3 # = 1 (XOR, not 8!)
2 ** 3 # =
neighbors