Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

목록이 비어 있는지 여부를 확인하는 Python 프로그램?

<시간/>

빈 목록이 주어졌습니다. 우리의 임무는 이 목록이 비어 있는지 여부를 날씨를 확인하는 것입니다. 여기에서 확인하는 것이 암시적 확인 방법입니다.

알고리즘

Step 1: We take an empty list.
Step 2: then check if list is empty then return 1 otherwise 0.

예시 코드

# Python code to check for empty list 
def checklist(A): 
   if not A: 
      return 1
   else: 
      return 0
# Driver Code 
A = []
if checklist(A): 
   print ("The list is Empty") 
else: 
   print ("The list is not empty") 

출력

The list is Empty