I've this error message TypeError: 'numpy.float64' object is not iterable
when y execute my .py.
It occur in:
file=open("results.txt","a")
for i in ConcatRPH:
for j in i :
file.write(j)
file.write("\n")
file.close()
ConcatRPH is a large array about 2 million line by 3 column which containt floats like -0.00161894927736417
and i need to write them in a txt file. I don't know why I have this error ... Do you have any idea ?