본문 바로가기

Programming/Python

[Python] 빈 리스트 확인하는 방법

빈 Sequence(String / Tuple / List)는 False 값을 가진다.


따라서 빈 리스트를 확인하기 위해 다음과 같이 하면 된다.


권장하는 방법 )

if not x:
print("List x is Empty")


권장하지 않는 방법)

if not len(x):
print("List x is Empty")








※ 출처 : http://hashcode.co.kr/questions/22/빈-리스트를-확인하는-방법을-가르쳐주세요