create a list for python code example
Example 1: how to make a python list
listName = [1,2,3,4]
Example 2: making lists in python
# list with numbers
list = [10, 20, 30]
# list with strings
list = ["john", "kai", "albert"]
# mixed data
list = ["john",1 ,True ]