multidimensional arrays in python code example
Example 1: how to create multidimensional array in python using numpy
from numpy import *
array = array([[1,2,3,4],[3,4,2,5]])
print(array)
Example 2: 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)
Example 3: 2d array python3
matrix = [[False for col in range(6)] for row in range(5)]
matrix = [['banana' for col in range(5)] for row in range(6)]
Example 4: two dimensional array python
w, h = 8, 5;
Matrix = [[0 for y in range(h)] for x in range(w)]
Matrix[0][0] = 1
Matrix[0][6] = 3
Matrix[6][0] = 3