Python 中 if not 的用法
if not 判断是否为NONE代码中经常会有判断变量是否为NONE的情况,主要有三种写法:第一种: if x is None(最清晰)第二种: if not x第三种: if not x is None>>> x = 1 >>> not x False >>> x = [1] &