1. 程式人生 > >python儲存二維陣列到txt檔案中

python儲存二維陣列到txt檔案中

一個非常繁瑣粗暴的方法,python屬於入門級水平,就醬先備份一下,如果有更好的方法再更新

arrs=[[2,15,48,4,5],[6,7,6,4,1],[2,3,6,6,7],[4,6,8,11,2]]
ARRS = []
f=open('testARRS.txt','w+')
for i in range(4):
    jointsFrame = arrs[i] #每行
    ARRS.append(jointsFrame)
    for Ji in range(5):
        strNum = str(jointsFrame[Ji])
        f.write(strNum)
        f.write(' ')
    f.write('\n')
f.close()

⭐  np.savetxt()方法寫入