Gibt es eine weniger ausführliche Alternative dazu:
for x in xrange(array.shape[0]):
for y in xrange(array.shape[1]):
do_stuff(x, y)
Ich habe mir das ausgedacht:
for x, y in itertools.product(map(xrange, array.shape)):
do_stuff(x, y)
Das spart eine Einrückung, ist aber immer noch ziemlich hässlich.
Ich hoffe auf etwas, das wie dieser Pseudocode aussieht:
for x, y in array.indices:
do_stuff(x, y)
Gibt es so etwas?
for x, y in itertools.product(*map(xrange, array.shape)):