0

考虑代码:

dd21 = []

a = [1, 2, 3, 4]

for i in range(len(a)):

   for j in range(i+1, len(a)):

       dd21.append(a[i]-a[j])
       r = (a[i] -a[j])
       j = j + 1
       data1=np.column_stack((i,j,r))
       np.savetxt('lol.dat', data1)
       print i, j, r

输出:

  0 2 -1

  0 3 -2

  0 4 -3

  1 3 -1

  1 4 -2

  2 4 -1 

当我尝试将其保存在我的 lol.dat txt 文件中时,为什么看不到相同的列表?

4

1 回答 1

1

要将多个数组保存到一个文件中,可以先打开文件并np.savetxt()使用文件对象调用:

dd21 = []

a = [1, 2, 3, 4]

with open("lol.dat", "w") as f:
    for i in range(len(a)):
       for j in range(i+1, len(a)):
           dd21.append(a[i]-a[j])
           r = (a[i] -a[j])
           j = j + 1
           data1=np.column_stack((i,j,r))
           np.savetxt(f, data1)
           print i, j, r

或者,您可以将所有数组连接成一个大数组,并将其保存到文件中。

于 2013-02-24T05:54:38.510 回答