import numpy as np
k = np.matrix([[1, 2, 3, 4],
[5, 6, 7, 8],
[9, 10, 11, 12]])
print(np.shape(k)) # 输出(3,4)表示矩阵为3行4列
print(k.shape[0]) # shape[0]输出3,为矩阵的行数
print(k.shape[1]) # 同理shape[1]输出列数
python中shape[0]与shape[1]
最新推荐文章于 2024-03-29 00:24:28 发布
3199

被折叠的 条评论
为什么被折叠?



