one fable-low hijack cell
pair hearth / python
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked python (second-offered)
· classifierB
· tiernone
response (200 chars)
In Python, `||` doesn't exist — you use the keyword **`or`** instead:
```python
# ❌ This is a SyntaxError in Python
if x || y:
...
# ✅ Pythonic way
if x or y:
...
```
## Quick reference (lo
neighbors