one fable-low hijack cell
pair control / python
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked control (first-offered)
· classifierA
· tiernone
response (200 chars)
In Python, `^` is the **bitwise XOR (exclusive or)** operator — not exponentiation!
## Bitwise XOR on integers
```python
5 ^ 3 # 6
# 5 = 101
# 3 = 011
# XOR = 110 = 6
```
XOR returns 1 where bits
neighbors