什么语法更适合python!=或不是?

时间:2014-10-27 18:48:00

标签: python

例如:

match = re.search('...', str, re.IGNORECASE)
if match is not None:
    pass

# or
if match != None:
    pass

什么更好?

1 个答案:

答案 0 :(得分:5)

来自PEP 8

  

应该始终使用isis not来比较像None这样的单例,而不是等式运算符。