Python의 False가 되는 것들
0, None, 빈 문자열 ('')
예시
# 부정(not)의 부정(0, None, '') = Ture
if not 0:
print('hi')
# hi
if not None:
print('hi')
# hi
if not '':
print('hi')
# hi
'컴퓨터 IT > Python & Pycharm' 카테고리의 다른 글
파이참 자동완성 비활성화 (0) | 2020.02.26 |
---|---|
Pycharm에서 마지막 git commit 되돌리기 (0) | 2020.02.23 |