> For the complete documentation index, see [llms.txt](https://l1nwatch.gitbook.io/interview_exercise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://l1nwatch.gitbook.io/interview_exercise/stackoverflow-about-python/jian-cha-lie-biao-wei-kong-de-zui-hao-ban-fa.md).

# 检查列表为空的最好办法

用隐藏的空列表的布尔值才是最 Pythonic 的方法：

```python
if not a:
    print("list a is empty")
```

虽然我自己一般用 `len(a) == 0`
