one fable-low hijack cell
pair duty / python
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked python (second-offered)
· classifierB
· tiernone
response (200 chars)
In Python, `^` is the **bitwise XOR (exclusive OR)** operator.
## How it works
XOR compares bits: the result is `1` when the bits differ, `0` when they're the same.
```python
a = 5 # binary: 0
neighbors