Answers for "arrays in python"

6

for element in array python

itemlist = []
for j in range(len(myarray)):
    item = myarray[j]
    itemlist.append(item)
Posted by: Guest on May-14-2020
20

how to create an array in python

array = ["1st", "2nd", "3rd"]
#prints: ['1st', '2nd', '3rd']
array.append("4th")
#prints: ['1st', '2nd', '3rd', '4th']
Posted by: Guest on November-28-2019
54

python array

array = ["1st", "2nd", "3rd"];
#prints: ['1st', '2nd', '3rd']
Posted by: Guest on December-19-2019
21

python arrays

array = [1,2,3,4,5]
print(array,array[0],array[1],array[2],array[3],array[4]

#Output#
#[1,2,3,4,5] 1 2 3 4 5
Posted by: Guest on March-07-2020
11

python create array

variable = []
Posted by: Guest on April-10-2020
2

arrays in python

# In python, arrays are actually called lists. Same thing tho
list_or_array = [1.0, 2, '3', True, [1, 2, 3, 4]]
"""
So, list can contain floats, integers, strings, booleans, nested lists, and 
practically any other datatype
"""
Posted by: Guest on February-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language