one fable-low hijack cell
pair lua / 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 vs Lua
## Python — uses `or` keyword
Python doesn't have `||`. Use `or` instead:
```python
a = True
b = False
if a or b:
print("at least one is true")
# Common idiom: default
neighbors