본문 바로가기

컴퓨터 IT/Python & Pycharm

Python의 False

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