one fable-low hijack cell
pair commodity / python
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked commodity (first-offered)
· classifierA
· tiernone
response (200 chars)
In Python, there is no `||` operator. Use the keyword **`or`** instead:
```python
# Other languages: a || b
# Python:
a or b
```
## Examples
```python
x = 5
if x < 0 or x > 10:
print("out of r
neighbors