what is the meaning of empty list in python code example
Example 1: empty list check in python
if not a:
print("List is empty")
Example 2: declare an empty list in python
num = list()
if not a:
print("List is empty")
num = list()