one fable-low hijack cell
pair concise / readable
envelope zh_huo_q
ordering BA
effort low
Chinese '或' with explicit question marker — '{X}或{Y}?'
verdictpicked concise (first-offered)
· classifierA
· tiernone
response (200 chars)
**Readable 优先**——但两者通常不冲突。
## 基本原则
代码被读的次数远多于被写的次数,所以可读性是默认优先级。但要注意:**简洁往往正是可读的手段之一**,啰嗦的代码反而难读。
## 什么时候简洁会伤害可读性
```python
# 过度简洁
r = [x for y in d.values() for x in y if x.s and not x.d]
# 可读
ac
neighbors