관리 메뉴

개발이야기

[ Python Skill ] 비어있는 배열, 리스트 확인하기 본문

Python /Python Skill

[ Python Skill ] 비어있는 배열, 리스트 확인하기

안성주지몬 2019. 5. 17. 00:00

 

"How do I check if a list is empty?"

 

빈 list, array를 확인하는 코드는 아래와 같습니다.

 

'''
  Check list or Array is empty
'''

# 비어있는 리스트를 확인할 수 없는 코드
a = []
if a is None: #false
  print('a is empty!')
 
# 비어있는 리스트를 확인할 수 있는 코드
a = []
  if not a: # true
    print('a is empty!')

 

 

레퍼런스

[1] https://stackoverflow.com/questions/53513/how-do-i-check-if-a-list-is-empty

 

How do I check if a list is empty?

For example, if passed the following: a = [] How do I check to see if a is empty?

stackoverflow.com

 

 

Comments