Python能夠對文件進行查看、建立等功能,能夠對文件內容進行添加、修改、刪除,且所使用到的函數在Python3.5.x爲open
,在Python2.7.x同時支持file
和open
,可是在3.5.x系列移除了file
函數。python
文件句柄 = open('文件路徑','打開模式')
Ps:文件句柄至關於於變量名,文件路徑能夠寫爲絕對路徑也能夠寫爲相對路徑。shell
基本的模式函數
模式 | 說明 | 注意事項 |
---|---|---|
r | 只讀模式 | 文件必須存在 |
w | 只寫模式 | 文件不存在則建立文件,文件存在則清空文件內容 |
x | 只寫模式 | 文件不可讀,文件不存在則建立,存在則報錯 |
a | 追加模式 | 文件不存在建立文件,文件存在則在文件末尾添加內容 |
帶+
的模式測試
模式 | 說明 |
---|---|
r+ | 讀寫 |
w+ | 寫讀 |
x+ | 寫讀 |
a+ | 寫讀 |
帶b
的模式指針
模式 | 說明 |
---|---|
rb | 二進制讀模式 |
wb | 二進制寫模式 |
xb | 二進制只寫模式 |
ab | 二進制追加模式 |
提示:以b方式打開時,讀取到的內容是字節類型,寫入時也須要提供字節類型code
帶+
帶b
的模式對象
模式 | 說明 |
---|---|
rb+ | 二進制讀寫模式 |
wb+ | 二進制讀寫模式 |
xb+ | 二進制只寫模式 |
ab+ | 二進制讀寫模式 |
模式 | 說明 |
---|---|
read([size]) | 讀取文件所有內容,若是設置了size,那麼久讀取size字節 |
readline([size]) | 一行一行的讀取 |
readlines() | 讀取到的每一行內容做爲列表中的一個元素 |
測試的文件名是hello.tx"
,文件內容爲:blog
Hello Word! 123 abc 456 abc 789 abc
readutf-8
代碼:資源
# 以只讀的方式打開文件hello.txt f = open("hello.txt","r") # 讀取文件內容賦值給變量c c = f.read() # 關閉文件 f.close() # 輸出c的值 print(c)
輸出結果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py Hello Word! 123 abc 456 abc 789 abc
readline
代碼:
# 以只讀模式打開文件hello.txt f = open("hello.txt","r") # 讀取第一行 c1 = f.readline() # 讀取第二行 c2 = f.readline() # 讀取第三行 c3 = f.readline() # 關閉文件 f.close() # 輸出讀取文件第一行內容 print(c1) # 輸出讀取文件第二行內容 print(c2) # 輸出讀取文件第三行內容 print(c3)
輸出結果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py Hello Word! 123 abc
readlines
# 以只讀的方式打開文件hello.txt f = open("hello.txt","r") # 將文件全部內容賦值給c c = f.readlines() # 查看數據類型 print(type(c)) # 關閉文件 f.close() # 遍歷輸出文件內容 for n in c: print(n)
結果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py # 輸出的數據類型 <class 'list'> Hello Word! 123 abc 456 abc 789 abc
方法 | 說明 |
---|---|
write(str) | 將字符串寫入文件 |
writelines(sequence or strings) | 寫多行到文件,參數能夠是一個可迭代的對象,列表、元組等 |
write
代碼:
# 以只讀的模式打開文件write.txt,沒有則建立,有則覆蓋內容 file = open("write.txt","w") # 在文件內容中寫入字符串test write file.write("test write") # 關閉文件 file.close()
write.txt
文件內容爲:
test write
writelines
代碼:
# 以只讀模式打開一個不存在的文件wr_lines.txt f = open("wr_lines.txt","w",encoding="utf-8") # 寫入一個列表 f.writelines(["11","22","33"]) # 關閉文件 f.close()
wr_lines.txt
文件內容:
112233
close(self):
關閉已經打開的文件
f.close()
fileno(self):
文件描述符
f = open("hello.txt","r") ret = f.fileno() f.close() print(ret)
執行結果:
3
flush(self):
刷新緩衝區的內容到硬盤中
f.flush()
isatty(self):
判斷文件是不是tty設備,若是是tty設備則返回True
,不然返回False
f = open("hello.txt","r") ret = f.isatty() f.close() print(ret)
返回結果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py False
readable(self):
是否可讀,若是可讀返回True
,不然返回False
f = open("hello.txt","r") ret = f.readable() f.close() print(ret)
返回結果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py True
readline(self, limit=-1):
每次僅讀取一行數據
f = open("hello.txt","r") print(f.readline()) print(f.readline()) f.close()
返回結果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py Hello Word! 123
readlines(self, hint=-1):
把每一行內容看成列表中的一個元素
f = open("hello.txt","r") print(f.readlines()) f.close()
返回結果:
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()
返回結果:
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py 0
seek(self, offset, whence=io.SEEK_SET):
指定文件中指針位置
f = open("hello.txt","r") print(f.tell()) f.seek(3) print(f.tell()) f.close()
執行結果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py 0 3
seekable(self):
指針是否可操做
f = open("hello.txt","r") print(f.seekable()) f.close()
執行結果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py True
writable(self):
是否可寫
f = open("hello.txt","r") print(f.writable()) f.close()
執行結果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py False
writelines(self, lines):
寫入文件的字符串序列,序列能夠是任何迭代的對象字符串生產,一般是一個字符串列表
。
f = open("wr_lines.txt","w") f.writelines(["11","22","33"]) f.close()
執行結果
112233
read(self, n=None):
讀取指定字節數據,後面不加參數默認讀取所有
f = open("wr_lines.txt","r") print(f.read(3)) f.seek(0) print(f.read()) f.close()
執行結果
C:\Python35\python.exe F:/Python_code/sublime/Day06/file.py 112 112233
write(self, s):
往文件裏面寫內容
f = open("wr_lines.txt","w") f.write("abcabcabc") f.close()
文件內容
abcabcabc
爲了不打開文件後忘記關閉,能夠經過管理上下文,即:
with open('log','r') as f: 代碼塊
如此方式,當with代碼塊執行完畢時,內部會自動關閉並釋放文件資源。
在Python 2.7 及之後,with又支持同時對多個文件的上下文進行管理,即:
with open('log1') as obj1, open('log2') as obj2: pass