one fable-low hijack cell
pair individual / 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
Python **does not use `||`** for logical OR. Using it raises a `SyntaxError`.
## Use `or` instead
```python
# ❌ Wrong (other languages like C, Java, JavaScript)
if x > 5 || y < 10:
neighbors