python 布尔值

Posted xushukui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 布尔值相关的知识,希望对你有一定的参考价值。

下列对象的布尔值都是False:

NONE;

False(布尔类型)

所有的值为零的数

       0(整型)

       0.0(浮点型)

       0L(长整型)

       0.0+0.0j(复数)

""(空字符串)

[](空列表)

()(空元组)

{}(空字典)

字典也能用户布尔测试

dict_1 = {}
dict_2 = {‘a‘:123}
 
if dict_1:
    print(‘dict_1 is not null‘)
else:
    print(‘dict_1 is null‘)
 
if dict_2:
    print(‘dict_2 is not null‘)
else:
    print(‘dict_2 is null‘)

输出:

dict_1 is null
dict_2 is not null

可见,字典类型也能用于布尔测试。

以上是关于python 布尔值的主要内容,如果未能解决你的问题,请参考以下文章

用python输入布尔值[重复]

Python snippet(代码片段)

Python中的布尔值列表到整数

Python从菜鸟到高手:条件和条件语句

初学者问题:从 Python 中的函数返回布尔值

Python:如果任意元素在任意列表中,则返回布尔值