논리 연산자 (Logic operator)

논리 연산자 (Logic operator)and, or, not입니다.


논리 연산자 종류


and   :   두 피연산자가 모두 참일 때, True.

or   :   두 피연산자 중 하나가 참일 때, True.

not   :   피연산자가 참이면, False, 거짓이면 True.


예제

a = True
b = False

print(a and b)       # Result: False
print(a or b)        # Result: True
print(not a)         # Result: False
print(not b)         # Result: True
False
True
False
True

두 피연산자 a, b의 참, 거짓 여부에 따라 and, or, not 연산의 결과를 출력합니다.



이전글/다음글