itérer sur les lignes dans Numpy Matrix Python

import numpy
m = numpy.ones((3,5),dtype='int')
for row in m:
  # do stuff with row
Anxious Alligator