Python open() 方法用於打開一個文件,並返回文件對象,在對文件進行處理過程都須要使用到這個函數,若是該文件沒法被打開,會拋出 OSError。(使用 open() 方法必定要保證關閉文件對象,即調用 close() 方法)函數
open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
close()方法用於關閉一個已打開的文件,關閉後的文件不能再進行讀寫操做, 不然會觸發 ValueError 錯誤。close() 方法容許調用屢次。操作系統
語法:fileObject.close();
file = open("hello.txt","wb") print(file.name) file.close() # 輸出:hello.txt
read() 方法用於從文件讀取指定的字節數,若是未給定或爲負則讀取全部。指針
首先本身建立一個hello.txt文檔(自定義),文檔中的內容是hello world。code
file = open("hello.txt", "r") read1 = file.read() print(read1) file.close() # 輸出:hello world
write()方法用於向文件中寫入指定字符串。對象
向一個空的hello.txt文檔中寫入hello world。ip
file = open("hello.txt", "w") file.write("hello world") file.close()
writelines() 方法用於向文件中寫入一序列的字符串。這一序列字符串能夠是由迭代對象產生的,如一個字符串列表。換行須要制定換行符 n。文檔
file = open("hello.txt", "w") con = ["a \n", "b\n", "c\n"] file.writelines(con) file.close() # hello.txt文件中寫入 a b c
flush() 方法是用來刷新緩衝區的,即將緩衝區中的數據馬上寫入文件,同時清空緩衝區,不須要是被動的等待輸出緩衝區寫入。
通常狀況下,文件關閉後會自動刷新緩衝區,但若是你須要在關閉前刷新它,就可使用 flush() 方法。字符串
file = open("hello.txt", "wb") print("文件名:", file.name) file.flush() file.close() # 文件名: hello.txt
readline() 方法用於從文件讀取整行,包括 "n" 字符。若是指定了一個非負數的參數,則返回指定大小的字節數,包括 "n" 字符。it
# hello.txt的內容 123 456 789
file = open("hello.txt", "r") content = file.readline() print(content) file.close() # 輸出hello.txt文件的第一行:123
readlines() 方法用於讀取全部行(直到結束符 EOF)並返回列表,該列表能夠由 Python 的 for... in ... 結構進行處理。若是碰到結束符 EOF 則返回空字符串。coding
file = open("hello.txt", "r") content = file.readlines() print(content) file.close() # 輸出:['123\n', '456\n', '789']
seek() 方法用於移動文件讀取指針到指定位置。
fileObject.seek(offset[, whence])
假設hello.txt文件中的內容是abcdefghijk,那麼咱們使用 seek() 方法來移動文件指針試試:
file = open("hello.txt", "r") file.seek(3) #文件指針移動到第三位,從第四位開始讀 print(file.read()) # 輸出:defghijk file.seek(5) print(file.read()) # 輸出:fghijk file.close()
tell() 方法返回文件的當前位置,即文件指針當前位置。
file = open("hello.txt", "r") file.seek(4) #文件指針移動到第三位,從第四位開始讀 print(file.tell()) # 4 file.close()
fileno() 方法返回一個整型的文件描述符(file descriptor FD 整型),可用於底層操做系統的 I/O 操做。
file = open("hello.txt", "w") con = file.fileno() print(con) file.close() # 輸出:3
若是文件鏈接到一個終端設備返回 True,不然返回 False。
file = open("hello.txt", "w") con = file.isatty() print(con) file.close() # 輸出:False
truncate() 方法用於截斷文件,若是指定了可選參數 size,則表示截斷文件爲 size 個字符。 若是沒有指定 size,則從當前位置起截斷;截斷以後 size 後面的全部字符被刪除。
# hello.txt文本 a b c d e
file = open("hello.txt", "r") con = file.readline() print(con) # 輸出:a file.truncate() # 截斷剩下的字符串 con = file.readline() print(con) file.close()