用索引迭代numpy(相当于python枚举的numpy)

用索引迭代numpy(相当于python枚举的numpy),第1张

索引迭代numpy(相当于python枚举的numpy)

您可以使用来遍历数组中的值,

numpy.ndenumerate
以获取数组中值的索引。

使用上面的文档:

A = np.array([[1,2,3],[4,5,6],[7,8,9]])for index, values in np.ndenumerate(A):    print(index, values)  # operate here


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

原文地址: http://outofmemory.cn/zaji/5587852.html

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

发表评论

登录后才能评论

评论列表(0条)

保存