1. python的标准比较运算符,根据表达式的值的真假返回布尔值。
比较运算符:
< <= > >= == != <>
>>> 2 < 4True>>> 2 == 4False>>> 2 > 4False>>> 6.2 <= 6False>>> 6.2 <= 6.2True>>> 6.2 <= 6.20001True
2. 使用逻辑运算符,可以将任意表达式连接在一起,并得到一个布尔值。
逻辑运算符:
and or not>>> 2 < 4 and 2 == 4False>>> 2 > 4 or 2 < 4True>>> not 6.2 <= 6True>>> 3 < 4 < 5True