how to create an empty list code example

Example 1: py create empty list

# declare list 
a = []          
  
print("Values of a:", a) 
print("Type of a:  ", type(a)) 
print("Size of a:  ", len(a))      

# Output:
# > Values of a: []
# > Type of a:   <class 'list'>
# > Size of a:   0

Example 2: empty list in python

# Python program to declare 
# empty list 

# list is declared 
a = []

Example 3: python empty list

if not a:
  print("List is empty")

Example 4: initialize empty list python

l = [] # l is the empty list

Example 5: declare an empty list in python

num = list()