SyntaxFix
Write A Post
Hire A Developer
Questions
While you should certainly provide more information, if you are trying to go through each row, you can just iterate with a for loop:
import numpy m = numpy.ones((3,5),dtype='int') for row in m: print str(row)