Python可以對文件進(jìn)行查看、創(chuàng)建等功能,可以對文件內(nèi)容進(jìn)行添加、修改、刪除,且所使用到的函數(shù)在Python3.5.x為open
,在Python2.7.x同時支持file
和open
,但是在3.5.x系列移除了file
函數(shù)。
文件句柄 = open('文件路徑','打開模式')
Ps:文件句柄相當(dāng)于于變量名,文件路徑可以寫為絕對路徑也可以寫為相對路徑。
基本的模式
模式 | 說明 | 注意事項(xiàng) |
---|---|---|
r | 只讀模式 | 文件必須存在 |
w | 只寫模式 | 文件不存在則創(chuàng)建文件,文件存在則清空文件內(nèi)容 |
x | 只寫模式 | 文件不可讀,文件不存在則創(chuàng)建,存在則報錯 |
a | 追加模式 | 文件不存在創(chuàng)建文件,文件存在則在文件末尾添加內(nèi)容 |
帶+
的模式
模式 | 說明 |
---|---|
r+ | 讀寫 |
w+ | 寫讀 |
x+ | 寫讀 |
a+ | 寫讀 |
帶b
的模式
模式 | 說明 |
---|---|
rb | 二進(jìn)制讀模式 |
wb | 二進(jìn)制寫模式 |
xb | 二進(jìn)制只寫模式 |
ab | 二進(jìn)制追加模式 |
提示:以b方式打開時,讀取到的內(nèi)容是字節(jié)類型,寫入時也需要提供字節(jié)類型
帶+
帶b
的模式
模式 | 說明 |
---|---|
rb+ | 二進(jìn)制讀寫模式 |
wb+ | 二進(jìn)制讀寫模式 |
xb+ | 二進(jìn)制只寫模式 |
ab+ | 二進(jìn)制讀寫模式 |
模式 | 說明 |
---|---|
read([size]) | 讀取文件全部內(nèi)容,如果設(shè)置了size,那么久讀取size字節(jié) |
readline([size]) | 一行一行的讀取 |
readlines() | 讀取到的每一行內(nèi)容作為列表中的一個元素 |
測試的文件名是hello.tx"
,文件內(nèi)容為:
Hello Word!123abc456abc789abc
read
代碼:
# 以只讀的方式打開文件hello.txtf = open("hello.txt","r")# 讀取文件內(nèi)容賦值給變量cc = f.read()# 關(guān)閉文件f.close()# 輸出c的值print(c)
輸出結(jié)果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.pyHello Word!123abc456abc789abc
readline
代碼:
# 以只讀模式打開文件hello.txtf = open("hello.txt","r")# 讀取第一行c1 = f.readline()# 讀取第二行c2 = f.readline()# 讀取第三行c3 = f.readline()# 關(guān)閉文件f.close()# 輸出讀取文件第一行內(nèi)容print(c1)# 輸出讀取文件第二行內(nèi)容print(c2)# 輸出讀取文件第三行內(nèi)容print(c3)
輸出結(jié)果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.pyHello Word!123abc
readlines
# 以只讀的方式打開文件hello.txtf = open("hello.txt","r")# 將文件所有內(nèi)容賦值給cc = f.readlines()# 查看數(shù)據(jù)類型print(type(c))# 關(guān)閉文件f.close()# 遍歷輸出文件內(nèi)容for n in c: print(n)
結(jié)果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py# 輸出的數(shù)據(jù)類型<class 'list'>Hello Word!123abc456abc789abc
方法 | 說明 |
---|---|
write(str) | 將字符串寫入文件 |
writelines(sequence or strings) | 寫多行到文件,參數(shù)可以是一個可迭代的對象,列表、元組等 |
write
代碼:
# 以只讀的模式打開文件write.txt,沒有則創(chuàng)建,有則覆蓋內(nèi)容file = open("write.txt","w")# 在文件內(nèi)容中寫入字符串test writefile.write("test write")# 關(guān)閉文件file.close()
write.txt
文件內(nèi)容為:
test write
writelines
代碼:
# 以只讀模式打開一個不存在的文件wr_lines.txtf = open("wr_lines.txt","w",encoding="utf-8")# 寫入一個列表f.writelines(["11","22","33"])# 關(guān)閉文件f.close()
wr_lines.txt
文件內(nèi)容:
112233
close(self):
關(guān)閉已經(jīng)打開的文件
f.close()
fileno(self):
文件描述符
f = open("hello.txt","r")ret = f.fileno()f.close()print(ret)
執(zhí)行結(jié)果:
3
flush(self):
刷新緩沖區(qū)的內(nèi)容到硬盤中
f.flush()
isatty(self):
判斷文件是否是tty設(shè)備,如果是tty設(shè)備則返回True
,否則返回False
f = open("hello.txt","r")ret = f.isatty()f.close()print(ret)
返回結(jié)果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.pyFalse
readable(self):
是否可讀,如果可讀返回True
,否則返回False
f = open("hello.txt","r")ret = f.readable()f.close()print(ret)
返回結(jié)果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.pyTrue
readline(self, limit=-1):
每次僅讀取一行數(shù)據(jù)
f = open("hello.txt","r")print(f.readline())print(f.readline())f.close()
返回結(jié)果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.pyHello Word!123
readlines(self, hint=-1):
把每一行內(nèi)容當(dāng)作列表中的一個元素
f = open("hello.txt","r")print(f.readlines())f.close()
返回結(jié)果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py['Hello Word!\n', '123\n', 'abc\n', '456\n', 'abc\n', '789\n', 'abc']
tell(self):
獲取指針位置
f = open("hello.txt","r")print(f.tell())f.close()
返回結(jié)果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py0
seek(self, offset, whence=io.SEEK_SET):
指定文件中指針位置
f = open("hello.txt","r")print(f.tell())f.seek(3)print(f.tell())f.close()
執(zhí)行結(jié)果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py03
seekable(self):
指針是否可操作
f = open("hello.txt","r")print(f.seekable())f.close()
執(zhí)行結(jié)果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.pyTrue
writable(self):
是否可寫
f = open("hello.txt","r")print(f.writable())f.close()
執(zhí)行結(jié)果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.pyFalse
writelines(self, lines):
寫入文件的字符串序列,序列可以是任何迭代的對象字符串生產(chǎn),通常是一個字符串列表
。
f = open("wr_lines.txt","w")f.writelines(["11","22","33"])f.close()
執(zhí)行結(jié)果
112233
read(self, n=None):
讀取指定字節(jié)數(shù)據(jù),后面不加參數(shù)默認(rèn)讀取全部
f = open("wr_lines.txt","r")print(f.read(3))f.seek(0)print(f.read())f.close()
執(zhí)行結(jié)果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py112112233
write(self, s):
往文件里面寫內(nèi)容
f = open("wr_lines.txt","w")f.write("abcabcabc")f.close()
文件內(nèi)容
abcabcabc
為了避免打開文件后忘記關(guān)閉,可以通過管理上下文,即:
with open('log','r') as f: 代碼塊
如此方式,當(dāng)with代碼塊執(zhí)行完畢時,內(nèi)部會自動關(guān)閉并釋放文件資源。
在Python 2.7 及以后,with又支持同時對多個文件的上下文進(jìn)行管理,即:
with open('log1') as obj1, open('log2') as obj2: pass
本文出自 “一盞燭光” 博客,謝絕轉(zhuǎn)載!
更多建議: