one fable-low hijack cell
pair python / truth
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, `||` isn't valid syntax — Python uses the keyword **`or`** instead.
```python
# ❌ SyntaxError
x = True || False
# ✅ Correct
x = True or False # True
```
## How `or` works in Python
`o
neighbors