赞
踩
import numpy as np
a = [1,2,3]—有一层[],说明是一维的,,,a.shape=(3,)
a = [[1,2,3],[4,5,6]]—有两层[],说明是二维的,,,a.shape=(2,3)
a = [[1],[2],[3]]—有两层[],说明是二维的,,,a.shape=(3,1)
需要重点注意的是列表list是没有shape属性的,需要将其转换为数组,如下可以有两种表示方式。
b = [[1,2,3],[4,5,6],[7,8,9]]
print(np.shape(b))
print(np.array(b).shape)
如果直接用列表的shape属性,会报如下错误。
a = [[1,2,3],[4,5,6]]
print(a.shape)
AttributeError: ‘list’ object has no attribute ‘shape’
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。