one fable-low hijack cell
pair kotlin / python
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked kotlin (first-offered)
· classifierA
· tiernone
response (200 chars)
# The `^` Operator in Python vs Kotlin
## Python
`^` is the **bitwise XOR** operator:
```python
5 ^ 3 # 6 (101 ^ 011 = 110)
True ^ False # True (works on bools too)
{1, 2} ^ {2, 3} # {1, 3}
neighbors