您好,登錄后才能下訂單哦!
這篇文章主要介紹“Python文件讀寫open函數怎么定義使用”,在日常操作中,相信很多人在Python文件讀寫open函數怎么定義使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python文件讀寫open函數怎么定義使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
前言:
open()函數的定義:def open(file, mode='r', buffering=None, encoding=None, errors=None, newline=None, closefd=True)
常用的參數有 file、mode、encoding
file是文件名稱, mode是文件的打開方式、encoding是文件編碼格式
mode常見的有 只讀模式®、寫入模式(w)、追加模式(a)、讀寫模式(r+/w+/a+)
r+要求文件必須存在;錨點置于末行末位字符處
w+文件不存在時新建,文件存在時將文件內容清空,錨點置于首行首字符處
a+文件不存在時新建,文件存在時打開文件,將錨點置于末行末位字符處
filename = 'test.txt' # 以只讀方式打開test.txt文件 fd = open(filename, 'r', encoding='utf-8') # fd.read(self, n) 按指定的長度讀取文件內容,為空則讀取全部內容 lines = fd.read() print(lines) fd.close() print('------------------read------------------------') # 以寫入模式打開test.txt文件 fd = open(filename, 'w', encoding='utf-8') # fd.write(self, str) 將str寫入文件 lines_w = fd.write('java\nPython\tGolang') print(lines_w) fd.close() print('------------------write------------------------') # 以追加模式打開文件 fd = open(filename, 'a', encoding='utf-8') lines_a = fd.write('java\nPython\tGolang') print(lines_a) fd.close() print('------------------append------------------------') # 以讀寫模式打開文件(r+) fd = open(filename, 'r+', encoding='utf-8') print(fd.read()) lines_str = fd.write('java\nPython\tGolang') print(fd.read()) fd.close() print('------------------readWrite------------------------') # 以讀寫模式打開文件(w+) fd = open(filename, 'w+', encoding='utf-8') lines_str = fd.write('java\nPython\tGolang') print(fd.read()) # 文件打開時清空文件內容,雖然寫入了文件,但未保存,因此讀取文件為空 fd.close() print('------------------readWrite------------------------') # 以讀寫模式打開文件(a+) fd = open(filename, 'a+', encoding='utf-8') print(fd.read()) # 按行讀取 print(fd.readlines(2)) lines_str = fd.write('java\nPython\tGolang') print(fd.read()) fd.close() print('------------------readWrite------------------------')
到此,關于“Python文件讀寫open函數怎么定義使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。