one fable-low hijack cell
pair python / swift
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
# `^` Operator: Python vs Swift
The `^` operator works as **bitwise XOR** in both languages:
## Python
```python
a = 5 ^ 3 # 0b101 ^ 0b011 = 0b110 → 6
b = True ^ False # True (works on bools)
neighbors