如何修复CSV导入问题?

时间:2014-10-20 17:44:42

标签: python

我正在尝试从CSV文件中导入此数据

location    scale
 0.90109    0.63551
0.59587     0.65525
0.80460     0.64227
0.65178     0.65198
0.76307     0.64503
0.52575     0.65915
0.41322 0.66496
0.30059 0.67022
0.21620     0.67382
0.17404 0.67552
-0.05027    0.68363
-0.0782 0.68454

使用此代码。

test=[]
import csv
f=open("data.csv")
for row in csv.reader(f):
    test.append(row)

但是当我打开测试文件时,我得到了一些\ xao编码。你能告诉我如何解决这个问题吗?

我想要做的就是在导入变量后对数据执行一些操作。

enter image description here

1 个答案:

答案 0 :(得分:2)

您的输入文件似乎包含一些non-breaking space characters(0xA0)。从文件中删除它们,然后重试。