溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Python怎么進(jìn)行讀寫(xiě)文件

發(fā)布時(shí)間:2021-08-17 20:26:41 來(lái)源:億速云 閱讀:157 作者:chen 欄目:云計(jì)算

本篇內(nèi)容主要講解“Python怎么進(jìn)行讀寫(xiě)文件”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“Python怎么進(jìn)行讀寫(xiě)文件”吧!

CharacterMeaning
‘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讀取文本,默認(rèn)模式
rb讀取二進(jìn)制數(shù)據(jù)
wt寫(xiě)入文本
wb寫(xiě)入二進(jìn)制
r+不清空原文件,讀寫(xiě)
w+清空原文件,并讀寫(xiě)
a+在文件末尾讀寫(xiě)

首先在左面新建一個(gè)”abc.txt”的文件,文件的內(nèi)容入如下:
I
love
CSDN

只讀模式(默認(rèn)模式)

>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","r")
>>>>print(f.read())
I
love
CSDN
>>>>f.close()

寫(xiě)入模式

>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","w")
>>>>f.write("test")
>>>>f.close()

輸出的結(jié)果是:
test

在使用”w”模式時(shí),python會(huì)把原來(lái)的文件給覆蓋掉,形成新的文件,這里注意如果寫(xiě)入的文件不存在,python會(huì)自動(dòng)新建一個(gè)文件。

追加模式

>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","a")
>>>>f.write("test")
>>>>f.close()

輸出的結(jié)果是:
I
love
CSDNtest

另外我們還可以設(shè)定讀取和寫(xiě)入的方式:
以二進(jìn)制方式讀?。?/p>

>>>>f=open("C:/Users/Administrator/Desktop/abc.txt","rb")
>>>>print(f.read())
>>>>f.close()
b'I\r\nlove\r\nCSDN'

而以二進(jìn)制讀取的一個(gè)妙用就是保存matplotlib的交互式圖片頁(yè)面:
保存交互式圖片頁(yè)面

import matplotlib.pyplot as pltimport pickle as pl#調(diào)用matplotlib的figure對(duì)象fig = plt.figure()
x = [1,2,3,4,5]
y = [1,2,3,4,5]
plt.plot(x,y)#序列化figure對(duì)象,并保存pl.dump(fig,open('C:/Users/Administrator/Desktop/fig.pickle','wb'))

讀取交互式頁(yè)面:

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())

到此,相信大家對(duì)“Python怎么進(jìn)行讀寫(xiě)文件”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問(wèn)一下細(xì)節(jié)

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

AI