概述
主要是为了记录python中的if xx: 与if xx is not None:细节问题。
if xx is not None: = if xx != None
if xx: = if xx != None and xx != " " and xx != False and xx != 0 and xx != [] and xx != {} and....
xx is not None 只是判断xx是不是 None 类型,如果不是None 类型,则返回True。
假设xx==0, 那么 if xx 返回值为 False,但是 xx is not None 返回值为True。
可以看出两者还是很不一样的!
最后
以上就是英俊小虾米为你收集整理的if xx: 与if xx is not None:的全部内容,希望文章能够帮你解决if xx: 与if xx is not None:所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复