gpt4 book ai didi

python-2.7 - 如何找到嵌套元组的维度?

转载 作者:行者123 更新时间:2023-12-04 03:19:48 24 4
gpt4 key购买 nike

我有一个看起来像这样的元组

  array=(1,2,3,4)
lenM = numpy.shape(array)
print lenM
(4,)

if not lenM[1]:
"Code"

现在如何自动化我的代码以查找元组是一维还是二维?

最佳答案

您可以使用 numpy.ndim为了这:

In [4]: np.ndim((1,2,3,4))
Out[4]: 1
In [5]: np.ndim(((1,2),(3,4)))
Out[5]: 2

关于python-2.7 - 如何找到嵌套元组的维度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34123020/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com