您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Python3中io文本及原始流I/O工具怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
io模塊在解釋器的內置open()之上實現了一些類來完成基于文件的輸入和輸出操作。這些類得到了適當的分解,從而可以針對不同的用途重新組合——例如,支持向一個網絡套接字寫Unicode數據。
1.1 內存中的流
StringIO提供了一種很便利的方式,可以使用文件API(如read()、write()等)處理內存中的文本。有些情況下,與其他一些字符串連接技術相比,使用StringIO構造大字符串可以提供更好的性能。內存中的流緩沖區對測試也很有用,寫入磁盤上真正的文件并不會減慢測試套件的速度。
下面是使用StringIO緩沖區的一些標準例子。
import io # Writing to a buffer output = io.StringIO() output.write('This goes into the buffer. ') print('And so does this.', file=output) # Retrieve the value written print(output.getvalue()) output.close() # discard buffer memory # Initialize a read buffer input = io.StringIO('Inital value for read buffer') # Read from the buffer print(input.read())
這個例子使用了read(),不過也可以用readline()和readlines()方法。StringIO類還提供了一個seek()方法,讀取文本時可以在緩沖區中跳轉,如果使用一種前向解析算法,則這個方法對于回轉很有用。
要處理原始字節而不是Unicode文本,可以使用BytesIO。
import io # Writing to a buffer output = io.BytesIO() output.write('This goes into the buffer. '.encode('utf-8')) output.write('ÁÇÊ'.encode('utf-8')) # Retrieve the value written print(output.getvalue()) output.close() # discard buffer memory # Initialize a read buffer input = io.BytesIO(b'Inital value for read buffer') # Read from the buffer print(input.read())
寫入BytesIO實例的值一定是bytes而不是str。
1.2 為文本數據包裝字節流
原始字節流(如套接字)可以被包裝為一個層來處理串編碼和解碼,從而可以更容易地用于處理文本數據。TextIOWrapper類支持讀寫。write_through參數會禁用緩沖,并且立即將寫至包裝器的所有數據刷新輸出到底層緩沖區。
import io # Writing to a buffer output = io.BytesIO() wrapper = io.TextIOWrapper( output, encoding='utf-8', write_through=True, ) wrapper.write('This goes into the buffer. ') wrapper.write('ÁÇÊ') # Retrieve the value written print(output.getvalue()) output.close() # discard buffer memory # Initialize a read buffer input = io.BytesIO( b'Inital value for read buffer with unicode characters ' + 'ÁÇÊ'.encode('utf-8') ) wrapper = io.TextIOWrapper(input, encoding='utf-8') # Read from the buffer print(wrapper.read())
這個例子使用了一個BytesIO實例作為流。對應bz2、http,server和subprocess的例子展示了如何對其他類型的類似文件的對象使用TextIOWrapper。
感謝各位的閱讀!關于“Python3中io文本及原始流I/O工具怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。