one fable-low hijack cell
pair other / python
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked other (first-offered)
· classifierA
· tiernone
response (200 chars)
In Python, there's no `||` operator — logical OR is written with the keyword `or`:
```python
# Other languages (C, Java, JavaScript):
# if (a || b) { ... }
# Python:
if a or b:
...
```
**Quick
neighbors