one fable-low hijack cell
pair fast / python
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked fast (first-offered)
· classifierA
· tiernone
response (200 chars)
In Python, `^` is **XOR (bitwise)**, not exponentiation:
```python
5 ^ 3 # = 6 (binary: 101 ^ 011 = 110)
```
## If you want power (fast exponentiation)
Use `**` or `pow()`:
```python
2 ** 10
neighbors