Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to make an array in python

#I will make an array and the contents will be called "Hello", "Nice", "Cool"

#Array
#By the way, you can make whatever variable name you want. 
#I will also print the array

#Making the Array
variable = ["Hello", "Nice", "Cool"]

#printing the array
print(variable)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #array #python
ADD COMMENT
Topic
Name
4+5 =