溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python3將數(shù)據(jù)保存為txt文件的方法

發(fā)布時間:2020-09-12 18:37:33 來源:腳本之家 閱讀:582 作者:AI_盲 欄目:開發(fā)技術

Python3將數(shù)據(jù)保存為txt文件的方法,具體內(nèi)容如下所示:

f = open("data/model_Weight.txt",'a')  #若文件不存在,系統(tǒng)自動創(chuàng)建。'a'表示可連續(xù)寫入到文件,保留原內(nèi)容,在原
                      #內(nèi)容之后寫入??尚薷脑撃J剑?w+','w','wb'等)
 
f.write("hello,sha")  #將字符串寫入文件中
f.write("\n")         #換行  
if __name__=='__main__':
  fw = open("/exercise1/data/query_deal.txt", 'w')  #將要輸出保存的文件地址
  for line in open("/exercise1/data/query.txt"):  #讀取的文件
    fw.write("\"poiName\":\"" + line.rstrip("\n") + "\"")  # 將字符串寫入文件中
    # line.rstrip("\n")為去除行尾換行符
    fw.write("\n")  # 換行

上面代碼結果如下:

輸入     

Python3將數(shù)據(jù)保存為txt文件的方法   

輸出結果:

Python3將數(shù)據(jù)保存為txt文件的方法

with open("data/model_Weight.txt", 'ab') as abc:  #寫入numpy.ndarray數(shù)據(jù)
  np.savetxt(abc, Data, delimiter=",")     #使用numpy.savetxt()寫入數(shù)據(jù),Data為要存的變量因為numpy.ndarray數(shù)                                    #據(jù)無法用write()寫入,數(shù)據(jù)間用','相隔。
f.write("\n") #換行
f.write("$***********world")        #可對文件繼續(xù)寫入
 
f.close()          #關閉

write可這樣寫入:f.write('%s%d%s%d%s%d%s'%("first",X,"_",Y,"_",Z,"hours  :"))  #X,Y,Z為整型變量,則寫入后內(nèi)容為firstX_Y_Zhours :(變量分別用值代替)  

Example: 

x = y = z = np.arange(0.0,5.0,1.0)
np.savetxt('test.out', x, delimiter=',')  # 數(shù)組x
np.savetxt('test.out', (x,y,z))  #x,y,z相同大小的一維數(shù)組
np.savetxt('test.out', x, fmt='%1.4e')  #

參考網(wǎng)址:https://docs.scipy.org/doc/numpy/reference/generated/numpy.savetxt.html

numpy中保存其他文件格式的方法:

numpy.save(file, arr, allow_pickle=True, fix_imports=True) #保存為二進制文件,格式:.npz

Example:

x = np.arange(10)
np.save('finaname', x)

使用numpy.load(filename)讀入數(shù)據(jù)

[source]

numpy.savez(file,*args,**kwds)保存多個數(shù)組到文件,文件格式:.npz

Example:np.savez('data/first.npz', positiveSample=data1, negSample=data2)

同樣使用numpy.load('data/first.npz')讀入數(shù)據(jù)

總結

以上所述是小編給大家介紹的Python3將數(shù)據(jù)保存為txt文件的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!
如果你覺得本文對你有幫助,歡迎轉載,煩請注明出處,謝謝!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI