数据是False:
整数值0、浮点数值0.0等、空字符串都为假
None为假
空数据对象都是假,比如[]、{}、()等
其他都为真true
逻辑运算:and、or、not
python中只支持字符形式的and、or、not逻辑运算,不支持符号类型的&&、||、!。
X and Y:X和Y都为真时,返回真
X or Y:X或Y为真,返回真
not X:X真假取反
not优先级很低,所以not a == b等价于not (a == b)