本篇內(nèi)容主要講解“Python怎么進行讀寫文件”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python怎么進行讀寫文件”吧!
我們一直強調(diào)成都做網(wǎng)站、網(wǎng)站建設(shè)對于企業(yè)的重要性,如果您也覺得重要,那么就需要我們慎重對待,選擇一個安全靠譜的網(wǎng)站建設(shè)公司,企業(yè)網(wǎng)站我們建議是要么不做,要么就做好,讓網(wǎng)站能真正成為企業(yè)發(fā)展過程中的有力推手。專業(yè)網(wǎng)絡(luò)公司不一定是大公司,成都創(chuàng)新互聯(lián)作為專業(yè)的網(wǎng)絡(luò)公司選擇我們就是放心。
Character | Meaning |
---|---|
‘r’ | open for reading (default) |
‘w’ | open for writing, truncating the file first |
‘a(chǎn)’ | open for writing, appending to the end of the file if it exists |
‘b’ | binary mode |
‘t’ | text mode (default) |
‘+’ | open a disk file for updating (reading and writing) |
‘U’ | universal newline mode (for backwards compatibility; should not be used in new code) |
模式 | 描述 |
---|---|
rt | 讀取文本,默認模式 |
rb | 讀取二進制數(shù)據(jù) |
wt | 寫入文本 |
wb | 寫入二進制 |
r+ | 不清空原文件,讀寫 |
w+ | 清空原文件,并讀寫 |
a+ | 在文件末尾讀寫 |
首先在左面新建一個”abc.txt”的文件,文件的內(nèi)容入如下:
I
love
CSDN
只讀模式(默認模式)
>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","r") >>>>print(f.read()) I love CSDN >>>>f.close()
寫入模式
>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","w") >>>>f.write("test") >>>>f.close()
輸出的結(jié)果是:
test
在使用”w”模式時,python會把原來的文件給覆蓋掉,形成新的文件,這里注意如果寫入的文件不存在,python會自動新建一個文件。
追加模式
>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","a") >>>>f.write("test") >>>>f.close()
輸出的結(jié)果是:
I
love
CSDNtest
另外我們還可以設(shè)定讀取和寫入的方式:
以二進制方式讀?。?/p>
>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","rb") >>>>print(f.read()) >>>>f.close() b'I\r\nlove\r\nCSDN'
而以二進制讀取的一個妙用就是保存matplotlib的交互式圖片頁面:
保存交互式圖片頁面
import matplotlib.pyplot as pltimport pickle as pl#調(diào)用matplotlib的figure對象fig = plt.figure() x = [1,2,3,4,5] y = [1,2,3,4,5] plt.plot(x,y)#序列化figure對象,并保存pl.dump(fig,open('C:/Users/Administrator/Desktop/fig.pickle','wb'))
讀取交互式頁面:
import matplotlib.pyplot as pltimport pickle as pl# 載入序列化文件fig = pl.load(open('C:/Users/Administrator/Desktop/fig.pickle','rb')) plt.show()# 獲得圖片信息print(fig.axes[0].lines[0].get_data())
到此,相信大家對“Python怎么進行讀寫文件”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!