Search
Duplicate

배열이 비어있는지 / 아닌지 확인하는 방법

간단소개
팔만코딩경 컨트리뷰터
ContributorNotionAccount
주제 / 분류
Python
Scrap
태그
9 more properties
# 배열이 비어있으면 ifnot arr: # 배열이 비어있지 않으면 if arr:
Python
복사
권장하지 않는 방법)
# 배열이 비어있으면 ifnot len(arr): # 배열이 비어있지 않으면 if len(arr):
Python
복사