one fable-low hijack cell
pair cooperate / 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.
## With integers
It compares bits: result bit is `1` where bits differ.
```python
5 ^ 3 # 6
# 101
# 011
# ---
# 110 -> 6
```
## Wit
neighbors