[Solved] How to create a 3D matrix with 3 columns and each column having 1000 rows [closed]
It is still not really clear what you want. If you want multidimensional array you can use lists: >>> matrix = [[None]*10 for x in range(3)]#replace 10 with 1000 or what ever >>> matrix [[None, None, None, None, None, None, None, None, None, None], [None, None, None, None, None, None, None, None, None, None], [None, … Read more