how to make a list of strings in python code example

Example 1: how to create a list in python

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

Example 2: how to make a list string in python

n = ["Hello"," I'm " , "12" , " Years Old "] # Our list
String = "" # Our string
for x in n :
    String += x
    
print(String) #Prints it

Example 3: 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