[파이썬, Python] 논리연산
>>> True
True
>>> True and False
False
>>> True & False
False
>>> True or False
True
>>> True | False
True
>>> not True
False
>>> not False
True
>>> 1 > 0
True
>>> 1 < 0
False
>>> 1 == 0
False
>>> 0 == 0
True
>>> 1 != 0
True
>>> 1 is not 0
True
>>> 1 is 0
False
>>> bool(0)
False
>>> bool(1)
True
반응형
'파이썬' 카테고리의 다른 글
[파이썬, Python] Wave 파일을 PCM 파일로 바꿔 저장하는 예제 1. (0) | 2015.07.21 |
---|---|
[파이썬, Python] 현재 폴더의 파일 리스트 출력하기 예제 (dir /w) (1) | 2015.07.21 |
[파이썬, Python] String 검색 (0) | 2015.07.21 |
[파이썬, Python] 파일명 확장자 변경하기 예제 (0) | 2015.07.20 |
[파이썬, Python] if x is not None or if not x is None? (1) | 2015.06.12 |