i/o系統有一系列的層次構建而成
下面是操作乙個文字檔案的例子來檢視這種層次
>>> f = open('sample.txt','w')>>> f
>>> f.buffer
<_io.bufferedwriter name='sample.txt'>
>>> f.buffer.raw
<_io.fileio name='sample.txt' mode='wb'>
>>>
一般來講,像上面例子這樣通過訪問屬性值來直接操作不同的層是很不安全的,如果你試著使用下面這樣的技術改變編碼看看會發生什麼
>>> f>>> f
>>> f.write('hello')
traceback (most recent call last):
file "", line 1, in valueerror: i/o operation on closed file.
>>>
結果出錯了,因為f 的原始值已經被破壞了並關閉了底層的檔案,
detach() 方法會斷開檔案的最頂層並返回第二層,之後最頂層就沒什麼用了
>>> f = open('sample.txt', 'w')>>> f
>>> b = f.detach()
>>> b
<_io.bufferedwriter name='sample.txt'>
>>> f.write('hello')
traceback (most recent call last):
file "", line 1, in valueerror:underlying buffer has been detached
一旦斷開最頂層後,你就可以給返回結果新增乙個新的最頂層
>>> f
>>>
python 查詢文字檔案的層次
i o系統有一系列的層次構建而成 下面是操作乙個文字檔案的例子來檢視這種層次 f open sample.txt w f sample.txt mode w encoding utf 8 f.buffer io.bufferedwriter name sample.txt f.buffer raw ...
python 讀寫文字檔案
本人最近新學python 用到文字檔案的讀取,經過一番研究,從網上查詢資料,經過測試,總結了一下讀取文字檔案的方法.a f open filename r content f.read decode utf 8 b f codecs.open encoding utf 8 content f.rea...
Python讀取文字檔案
給定c data hello.txt,內容如下 jack hello,how are you?rose i m good.按行讀取 filepath r c data hello.txt with open filepath as txtfile for line in txtfile print ...