码迷,mamicode.com
首页 > 编程语言 > 详细

python 布尔值

时间:2018-07-19 17:23:21      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:整型   lse   pytho   else   测试   pre   int   not   print   

下列对象的布尔值都是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 布尔值

标签:整型   lse   pytho   else   测试   pre   int   not   print   

原文地址:https://www.cnblogs.com/nyist-xsk/p/9336629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!