파이썬답게 리스트를 출력하는 방식에 대해 작성해보겠습니다.
list = []
list1 = [1,2,3]
if len(list) == 0:
print("this is empty!")
if len(list2) != 0:
print("this is not empty!")
실행 결과
this is empty!
this is not empty!
list = []
list1 = [1,2,3]
if not list:
print("this is empty!")
if list1:
print("this is not empty!")
실행 결과
this is empty!
this is not empty!