本文介绍几种numpy的属性:
1.ndim:维度
2.shape:行数和列数
3.size:元素个数
Demo.py
import numpy as np #为了方便使用numpy 采用np简写
array = np.array([[1,2,3],[2,3,4]]) #列表转化为矩阵
print array
#接着,看这几种属性
print('number of dim:',array.ndim) # 维度
# number of dim: 2
print('shape :',array.shape) # 行数和列数
# shape : (2, 3)
print('size:',array.size) # 元素个数
# size: 6
结果:
[[1 2 3]
[2 3 4]]
('number of dim:', 2)
('shape :', (2L, 3L))
('size:', 6)