numpy.float64 object is not iterable…but I’m NOT trying to
It looks like you’re trying to extend a list with a scalar float variable. The argument to extend must be an iterable (i.e. not a float). From your first bit of code it looks like means[i][j][k] returns a float, The problem is here, If you expect that means[i][j][k] will always be a single value and not a list you … Read more