Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 521 Bytes

6.md

File metadata and controls

22 lines (16 loc) · 521 Bytes
@author jackzhenguo
@desc 判断是真是假
@date 2019/2/12

6 判断是真是假  

测试一个对象是True, 还是False.

In [9]: bool([0,0,0])                                                           
Out[9]: True

In [10]: bool([])                                                               
Out[10]: False

In [11]: bool([1,0,1])                                                          
Out[11]: True
[上一个例子](5.md) [下一个例子](7.md)