Answers for "numpy 2d array in python"

8

create a 2d array in python

def build_matrix(rows, cols):
    matrix = []

    for r in range(0, rows):
        matrix.append([0 for c in range(0, cols)])

    return matrix

if __name__ == '__main__':
    build_matrix(6, 10)
Posted by: Guest on February-27-2020
1

2d array pytho

# 2D array that is 3x4 (3 columns, 4 rows)
# note that it is essentially an array of lists
arr = [
		[11, 12, 5],
        [15, 6, 10],
        [10, 8, 12],
        [12, 15, 8]
        ]
Posted by: Guest on April-26-2021
-1

python 2d array

array = [[11, 12, 5, 2], [15, 6,10], [10, 8, 12, 5], [12,15,8,6]]

print(array[0])

print(array[1][2])
Posted by: Guest on September-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language