标签:and als not false 取值 语句 表达式 两种 循环语句
条件语句和循环语句都以布尔表达式为条件
布尔值仅有两种取值True or False
布尔表达式
布尔操作符:and,or,not
布尔代数
and false == *0
or false == +0
and true == *1
德摩根定律,not放入表达式中之后
not (a and b) == (not a) or (not b)
not (a or b) == (not a) and (not b)
一个值不为0都视为真
标签:and als not false 取值 语句 表达式 两种 循环语句
原文地址:http://www.cnblogs.com/liyongxi14/p/7613545.html