one fable-low hijack cell
pair countryside / python
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked countryside (first-offered)
· classifierA
· tiernone
response (200 chars)
In Python, `||` is **not** a valid operator — you'll get a `SyntaxError`. Python uses the keyword `or` instead:
```python
# ❌ Wrong (works in C, Java, JavaScript...)
if x > 5 || y < 10:
# ✅ Correct
neighbors