hwo to create a 2d list python code example
Example 1: 2d array python
array = [[value] * lenght] * height
//example
array = [[0] * 5] * 10
print(array)
Example 2: python print 2d array as table
import numpy as np
print(np.matrix(A))
array = [[value] * lenght] * height
//example
array = [[0] * 5] * 10
print(array)
import numpy as np
print(np.matrix(A))