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