How to make a list python

Code examples

30
0

how to make a python list

listName = [1,2,3,4]
7
0

how to make a list in python

# empty list
my_list = []

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

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

how to create a list in python

# Create a list
new_list = []

# Add items to the list
item1 = "string1"
item2 = "string2"

new_list.append(item1)
new_list.append(item2)

# Access list items
print(new_list[0])  
print(new_list[1])   
4
0

creating a list in python

myList = [value,value,value] #note that you can use any amount of value
#you don not have to use value
2
0

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

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................