Numpy.zeros(参数 1:shape,数组的形状;参数 2:dtype, 数值类型)
注意:zeros()生成的是数组不是列表
>>> import numpy as np
>>> np.zeros((2,3))
array([[0., 0., 0.],
[0., 0., 0.]])
在未指定数值类型的情况下,默认为浮点数。 数组 形状(2,3)用小括号代表有2行3列的数组。
>>> a=np.zeros((2,3))
>>> a
array([[0., 0., 0.],
[0., 0., 0.]])
>>> type(a)
<class 'numpy.ndarray'>
>>> type(a[0])
<class 'numpy.ndarray'>
>>> type(a[0][0])
<class 'numpy.float64'>
>>> np.zeros([2,3])
array([[0., 0., 0.],
[0., 0., 0.]])
使用[]与()结果相同
>>> np.zeros([2,3,4])
array([[[0., 0., 0., 0.],
[0., 0., 0., 0.],
[0., 0., 0., 0.]],
[[0., 0., 0., 0.],
[0., 0., 0., 0.],
[0., 0., 0., 0.]]])
生成2个3行4列的数组
>>> np.zeros([2,3],dtype=int)
array([[0, 0, 0],
[0, 0, 0]])