one fable-low hijack cell
pair python / tradition
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
In Python, `^` does **not** mean exponentiation — that's a common surprise for people coming from math notation or other tools.
## What `^` actually does: bitwise XOR
```python
>>> 2 ^ 3
1 #
neighbors