Answers for "how to traverse multi dimensional array iteratively python"

4

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])
Posted by: Guest on June-01-2021
0

Iterating over a multidimensional array

var cubes = [["string", "string"], ["string", "string"]];

for(var i = 0; i < cubes.length; i++) {
    for(var j = 0; j < cubes[i].length; j++) {
        console.log(cubes[i][j]);
    }
}
Posted by: Guest on June-21-2021

Code answers related to "how to traverse multi dimensional array iteratively python"

Python Answers by Framework

Browse Popular Code Answers by Language