判断是否为None的情况
if not x
if x is None
if not x is None
if x is not None
是最好的写法,清晰,不会出现错误,以后坚持使用这种写法。
使用if not x
这种写法的前提是:必须清楚x等于None, False, 空字符串"", 0, 空列表[], 空字典{}, 空元组()时对你的判断没有影响才行
在python中 None, False, 空字符串"", 0, 空列表[], 空字典{}, 空元组()都相当于False,即:
not None == not False == not '' == not 0 == not [] == not {} == not ()