【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
【返回早報】