one fable-low hijack cell
pair python / stability
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
In Python, there's no `||` operator — that's from C/Java/JavaScript. Python uses the keyword `or` instead:
```python
# ❌ SyntaxError
if x > 5 || y < 10:
# ✅ Correct
if x > 5 or y < 10:
```
## How `
neighbors