【Python面试题】请解释一下Python中的逻辑运算符?
【答案】:
Python中有3个逻辑运算符: and, or, not。
>>> False and True
False
>>> 7<7 or True
True
>>> not 2==2
False
【返回早报】
【答案】:
Python中有3个逻辑运算符: and, or, not。
>>> False and True
False
>>> 7<7 or True
True
>>> not 2==2
False
【返回早报】