HELP on outputting 2D arrays in python?

Not quite. Use range and len functions when iterating. That way for row and column you will have numbers. Remember than when list is nested you can get elements by using multiple indices at the same time, i.e. some_array[0][1].

1 Like