one fable-low hijack cell
pair permit / python
envelope code_pipe_pipe
ordering AB
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked python (second-offered)
· classifierB
· tiernone
response (200 chars)
In Python, there's no `||` operator — you use the keyword `or` instead:
```python
# Other languages (JavaScript, C++, Java):
# if (a || b) { ... }
# Python:
if a or b:
...
```
Similarly:
- `&&`
neighbors