รับรายการที่ว่างเปล่า งานของเราคือตรวจสอบสภาพอากาศรายการนี้ว่างเปล่าหรือไม่ ที่นี่เราตรวจสอบเป็นวิธีการตรวจสอบโดยปริยาย
อัลกอริทึม
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