create list and add values in python code example
Example 1: how to make a python list
listName = [1,2,3,4]
Example 2: how to make a list in python
list = [1, 2, 3, 4, 5, 6, 7]
listName = [1,2,3,4]
list = [1, 2, 3, 4, 5, 6, 7]