import numpy as np # 基础属性 array = np.array([[[1,2,3], [0,0,1]], [[1,2,3], [0,0,1]]], dtype = np.int64) print(array) print(array.ndim) # number of dim print(array.shape) # shape print(array.size) # number of elements print(array.dtype) # 创建array a = n…