hwo to initialize a list in python code example
Example 1: how to make a python list
listName = [1,2,3,4]
Example 2: initialize a list of list in python
x = [[] for i in range(3)]
listName = [1,2,3,4]
x = [[] for i in range(3)]