PEP 8: E712 comparison to False should be 'if cond is False:' or 'if not cond:'

判断相等性时,建议使用 is 而不是 == 原代码: ``` return is_empty == False ``` 修改后: ``` return is_empty is False ```
我的笔记