반응형
논리 연산자
and (&)
- 두 조건이 모두 참일 때 참을 반환한다.
or (|)
- 두 조건중 하나만 참이여도 참을 반환한다.
not
- 기존의 결과를 반대로 반환한다.
a = True
b = False
print(a and b) # False
print(a & b) # False
print(a or b) # True
print(a | b) # True
print(not a) # False
print(not b) # True
print(not(a & b)) # True
반응형
'Python' 카테고리의 다른 글
[Python] Dictionary(사전) (0) | 2022.08.24 |
---|---|
[python] 연산자 (0) | 2022.08.24 |
[python] print() (0) | 2022.08.24 |
[python] null, 개행문자(\n) (0) | 2022.08.24 |
[python] input() (0) | 2022.08.24 |