大家早好、午好、晚好吖 ❤ ~欢迎光临本文章
如果有什么疑惑/资料需要的可以点击文章末尾名片领取源码
python中判断变量是否为None三种写法:
1、if x is None
2、if not x
3、if not x is None 理解成 if not (x is None) 结果是和1相反的
python中None、false、“”、0、[]、{}、()时,采用not 方法判断是相等的
not None==not false==not ''==not 0==not[]==not{}==not()
>>> x = []
>>> y = None
>>>
>>> x is None
False
>>> y is None
'''
python资料获取看这里噢!! 小编 V:python10010 好友验证备注:6
即可获取文章源码/教程/资料/解答等福利,还有不错的视频学习教程和PDF电子书!
'''
True
>>>
>>>
>>> not x
True
>>> not y
True
>>>
>>>
>>> not x is None
>>> True
>>> not y is None
False
尾语
好了,今天的分享就差不多到这里了!
对下一篇大家想看什么,可在评论区留言哦!看到我会更新哒(ง •_•)ง
喜欢就关注一下博主,或点赞收藏评论一下我的文章叭!!!