As you are working with float
data type, the following list builder code (as previously pointed in the comments) should work.
row = [float(i) for i in row]
solved How to remove ‘ ‘ in a python list
As you are working with float
data type, the following list builder code (as previously pointed in the comments) should work.
row = [float(i) for i in row]
solved How to remove ‘ ‘ in a python list