Python学习笔记-1.1 布尔运算符、if判断

今天主要学习的是布尔值运算,已经彻底被True、False、Not、And、Or搞晕了…

比如以下公式:

False or not True and True=False

False and not True or True=True

True and not(False or False)=True

not not True or False and not True=True

False or not(True and True)=False

下面进行第二阶段,if判断

if elif else

其中elif是 否则如果... 但是做习题的时候有道题没明白,明天问问丽莎吧。

你可能感兴趣的:(Python学习笔记-1.1 布尔运算符、if判断)