how to iterate through numpy 2d array code example
Example: iterating over 2d array python
x = [ ['0,0', '0,1'], ['1,0', '1,1'], ['2,0', '2,1'] ]
for i in range(len(x)):
for j in range(len(x[i])):
print(x[i][j])
x = [ ['0,0', '0,1'], ['1,0', '1,1'], ['2,0', '2,1'] ]
for i in range(len(x)):
for j in range(len(x[i])):
print(x[i][j])