Return a new array of given shape and type, filled with zeros.
| Parameters : | shape : int or sequence of ints 
 dtype : data-type, optional 
 order : {‘C’, ‘F’}, optional 
  | 
|---|---|
| Returns : | out : ndarray 
  | 
See also
Examples
>>> np.zeros(5)
array([ 0.,  0.,  0.,  0.,  0.])
>>> np.zeros((5,), dtype=numpy.int)
array([0, 0, 0, 0, 0])
>>> np.zeros((2, 1))
array([[ 0.],
       [ 0.]])
>>> s = (2,2)
>>> np.zeros(s)
array([[ 0.,  0.],
       [ 0.,  0.]])
>>> np.zeros((2,), dtype=[('x', 'i4'), ('y', 'i4')]) # custom dtype
array([(0, 0), (0, 0)],
      dtype=[('x', '<i4'), ('y', '<i4')])