结实未来

文章
7
资源
1
加入时间
3年0月10天

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] &