本文介绍了通过Python中的多维数组迭代的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我创建了一个多维数组在Python这样的:
I have created a multidimensional array in Python like this:
self.cells = np.empty((r,c),dtype=np.object)
现在我想通过我的二维数组的所有元素进行迭代,我不关心顺序。我如何做到这一点?
Now I want to iterate through all elements of my twodimensional array, and I do not care about the order. How do I achieve this?
推荐答案
很明显你使用numpy的。随着numpy的你可以做:
It's clear you're using numpy. With numpy you can just do:
for cell in self.cells.flat:
do_somethin(cell)
这篇关于通过Python中的多维数组迭代的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!