02-numpy数组对象的基本属性
array数组是numpy最核心的数据结构
array对象的属性
array的属性主要包括:shape、ndim、size、dtype
# 先创建好初始数据
import numpy as np
x = np.array([1,2,3,4,5,6,7,8])
y = np.array([
[1,2,3,4,5,6,7,8],
[1,2,3,4,5,6,7,8]
])
shape:获取array的形状,即行数和列数
x.shape y.shape
ndim:获取array的维度数量
x.ndim y.ndim
size:获取array的元素数量
x.size y.size
dtype:获取array的数据类型
x.dtype y.dtype
License:
CC BY 4.0