雷达智富

首页 > 内容 > 程序笔记 > 正文

程序笔记

【说站】python判断变量的方法对比

2024-11-25 5

python判断变量的方法对比

1、if x is not None是最好的写法,清晰,不会出现错误。

2、使用if not x这种写法的前提是:必须清楚x等于None、 False、 空字符串""、 空列表[]、空字典{}、空元组()时对你的判断没有影响才行。

三种方法

第一种是if x is None

第二种是 if not x:

第三种是if not x is None

#Python
 
>>> x = []
>>> y = None
>>>
>>> x is None
False
>>> y is None
True
>>>
>>>
>>> not x
True
>>> not y
True
>>>
>>>
>>> not x is None
>>> True
>>> not y is None
False
>>>

以上就是python判断变量的方法对比,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

更新于:2小时前
赞一波!1

文章评论

评论问答