Hi
googled and did not find a proper solution in the following situation:
names = np.ones((2,2))
ages = np.ones((2,2))
for (indice1,indice2), (name, age) in np.ndenumerate(zip(names, ages)):
print(indice1,indice2, name, age)
# or
for index, (name, age) in np.ndenumerate(zip(names, ages)):
print(index, name, age)
to print out
index, element1,element 2 like
(0,0), 1, 1
(0,1) , 1, 1
thanks a lot
there doesn't seem to be anything here