one fable-low hijack cell
pair permit / 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, the `^` symbol is **not** the power/exponent operator — it's the **bitwise XOR** operator. This trips up a lot of people!
## `^` = Bitwise XOR
```python
print(2 ^ 3) # 1 (binary: 10 XO
neighbors