-4

私は持っている:

data1=open('file1.txt','r')
data2=open('file2.txt','w+')

for line in data1.readlines():
    items = line.split(' ')
    x = log(float(items[0]))
    y = float(items[1])
    data2.write(x)
    data2.write('\t')
    data2.write(y)
    data2.write('\n')

file1 が含まれる場所

l   0.1
2   0.1
3   0.1
4   0.1
5   0.1
6   0.1
7   0.1
8   0.1
9   0.1
10  0.1

取得

ValueError: could not convert string to float: 1

エラーが発生する理由がよくわかりません。助けてください。前もって感謝します。

4

2 に答える 2