标签: python python-3.x pep8
while line_number < dictionary_elements_number and validation_bool == False:
通过pep8 E712 comparison to False should be 'if cond is False:' or 'if not cond:' 运行时出现此错误 这有点奇怪吗?
E712 comparison to False should be 'if cond is False:' or 'if not cond:'
答案 0 :(得分:1)
来自PEP8文档:
比较像单曲这样的单身人士应该总是使用is或 不是,从不是平等的运营商。
我猜False也是singleton。