how to represent a empty list in python3 code example
Example 1: empty list in python
# Python program to declare
# empty list
# list is declared
a = []
Example 2: python how to make an empty list
list = list()
# Python program to declare
# empty list
# list is declared
a = []
list = list()