Answers for "create a list within list python"

6

how to create a list in python

#creating a list
create_list = ["apple", "banana", "cherry"]
print(create_list)
Posted by: Guest on September-30-2020
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
Posted by: Guest on December-28-2020

Code answers related to "create a list within list python"

Python Answers by Framework

Browse Popular Code Answers by Language