一、表达式
1、表达式的概念
表达式(expression)是由运算符(operator)和操作数(operand)组成的序列。
2、表达式的优先级
运算符号的优先级,例如and的优先级高于or:
>>> a=1
>>> b=2
>>> c=3
>>> a or b and c
1
>>> (a or b) and c
3
算术运算符优先级>逻辑
>>> a=1
>>> b=2
>>> c=2
>>> not a or b +2 == c
False
>>> not a
False
>>> (not a) or ((b+2)==c)
False
>>> not (a or b) + 2 == c
True