one fable-low hijack cell
pair desire / 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, `||` doesn't exist — the logical OR operator is the keyword `or`:
```python
desire = "" # falsy: empty string
result = desire or "python"
print(result) # -> "python"
```
neighbors