Code
for i in range(num):
# for j in range(4):
lines = outf1.readline()
brr[i]= list(map(float, lines.split()))
This is my input dataset
['1', '1.52101', '13.64', '4.49', '1.1', '71.78', '0.06', '8.75', '0', '0', '1']
['2', '1.51761', '13.89', '3.6', '1.36', '72.73', '0.48', '7.83', '0', '0', '1']
['3', '1.51618', '13.53', '3.55', '1.54', '72.99', '0.39', '7.78', '0', '0', '1']
I am working with SOM algorithm. I have a file containing float values having 4 or 5 decimal values. I need to retrieve these values and store to array.