导语:
本文主要介绍了关于python判断变量的方法对比的相关知识,包括python怎么定义变量类型,以及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
>>>
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中安装pygame09/07
- ♥ python解释器的多种用途12/05
- ♥ python如何抛出异常不出现乱码01/03
- ♥ python中的Cartopy是什么10/12
- ♥ 让表格复杂? Python中openpyxl的用处10/17
- ♥ 如何在python中传递参数01/13
内容反馈