making a list code example

Example 1: how to make a python list

listName = [1,2,3,4]

Example 2: how to create a list in python

#creating a list
create_list = ["apple", "banana", "cherry"]
print(create_list)

Example 3: create list python

# empty list
my_list = []

# list of integers
my_list = [1, 2, 3]

# list with mixed data types
my_list = [1, "Hello", 3.4]

Example 4: how to make a list python

list = ['list element', 'list element']
# or t obe more effecient:
import numpy #if you do not have numpy, do "pip install numpy"
numpyarray = numpy.array(['array element', 'array element'])
#a numpy array is faster than a standard list

Example 5: how to create list in python

List_name=["values",'string value',1,1.1,'etc']