Answers for "as numpy iterator"

4

iterate through an array python

colors = ["red", "green", "blue", "purple"]
i = 0
while i < len(colors):
    print(colors[i])
    i += 1
Posted by: Guest on August-29-2020
0

iterate over rows in numpy matrix python

import numpy
m = numpy.ones((3,5),dtype='int')
for row in m:
  # do stuff with row
Posted by: Guest on September-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language