ndarray 的属性

继续使用上文中提到的 score,先将其输出出来看看

array([[80, 89, 86, 67, 79],
       [78, 97, 89, 67, 81],
       [90, 94, 78, 67, 74],
       [91, 91, 90, 67, 69],
       [76, 87, 75, 67, 86],
       [70, 79, 84, 67, 84],
       [94, 92, 93, 67, 64],
       [86, 85, 83, 67, 80]])

接下来我们调用score.shape 看看形状

(8, 5)

还可以使用score.size 看看尺寸大小

40

继续使用score.dtype 获得类型

dtype('int64')

更多的可以查看官方文档

Last updated