本文介绍了如何获得ndarray的x和y维-Numpy/Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否可以分别获取ndarray的x和y维度.我知道我可以使用ndarray.shape获取表示尺寸的元组,但是如何在x和y信息中将其分开?

I'm wondering if I can get the x and y dimensions of a ndarray separately. I know that I can use ndarray.shape to get a tuple representing the dimensions, but how can I separate this in x and y information?

谢谢.

推荐答案

您可以使用元组拆包.

y, x = a.shape

这篇关于如何获得ndarray的x和y维-Numpy/Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 16:18