one fable-low hijack cell
pair bourbon / python
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked bourbon (first-offered)
· classifierA
· tiernone
response (200 chars)
It looks like you might want to XOR two strings (`"bourbon" ^ "python"`) in Python. The `^` operator doesn't work directly on strings, but you can XOR their bytes:
```python
a = b"bourbon"
b = b"pyth
neighbors