I need to make a multidimensional array of zeros.
For two (D=2) or three (D=3) dimensions, this is easy and I\'d use:
a = numpy.zeros(shape=(n,n)) <
you can make multidimensional array of zeros by using square brackets
array_4D = np.zeros([3,3,3,3])