one fable-low hijack cell
pair modern / python
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked modern (first-offered)
· classifierA
· tiernone
response (200 chars)
# `||` in Python
Python doesn't use `||` — it uses the **`or`** keyword instead:
```python
# Other languages (JS, C, Java):
# if (x || y) { ... }
# Python:
if x or y:
...
```
## Common pattern
neighbors