python中的shape, shape[0], shape[1]

python中的shape, shape[0], shape[1],第1张

shape: 获取数组的形状

假设是一个二维数组
shape[0]: 获取数组的行数
shape[1]: 获取数组的列数

例:

import numpy as np

x = np.array([[1, 2, 3, 4], [4, 3, 2, 1]])

print(x.shape)
print(x.shape[0])
print(x.shape[1])

输出:

(2, 4)
2
4

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/717951.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-25
下一篇 2022-04-25

发表评论

登录后才能评论

评论列表(0条)

保存