标签: python
例如:
match = re.search('...', str, re.IGNORECASE) if match is not None: pass # or if match != None: pass
什么更好?
答案 0 :(得分:5)
来自PEP 8:
应该始终使用is或is not来比较像None这样的单例,而不是等式运算符。
is
is not