Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

empty list

# Python program to declare
# empty list
  
# list is declared
a = []         
  
print("Values of a:", a)
print("Type of a:", type(a))
print("Size of a:", len(a))
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #empty #list
ADD COMMENT
Topic
Name
5+3 =