numpy.zeros¶ ... Return a new array of given shape and type, filled with zeros. ... >>> np.zeros(5) array([ 0., 0., 0., 0., 0.]) ... >>> np.zeros((2, 1)) array([[ 0.] ...
確定! 回上一頁