python中的shape和reshape
参考:https://blog.csdn.net/u010916338/article/details/84066369
shape是array的属性,可以查看数据的维度
reshape()是数组array中的方法,作用是将数据重新组织
shape
import numpy as np
a = np.array([1,2,3,4,5,6,7,8]) #一维数组
print(a.shape[0]) #值为8,因为有8个数据
print(a.shape[1]) #IndexError: tuple ind
原创
2021-05-24 10:06:24 ·
152 阅读 ·
0 评论