最佳答案
除此之外,还有没有不那么冗长的替代方案:
for x in xrange(array.shape[0]):
for y in xrange(array.shape[1]):
do_stuff(x, y)
我想到了这个:
for x, y in itertools.product(map(xrange, array.shape)):
do_stuff(x, y)
虽然省了一个凹痕,但还是很难看。
我希望看到类似于这个伪代码的东西:
for x, y in array.indices:
do_stuff(x, y)
有这种东西吗?