用法:
class io.StringIO(initial_value='', newline='\n')
使用內存中文本緩衝區的文本流。它繼承了
TextIOBase
。調用
close()
方法時,將丟棄文本緩衝區。可以通過提供
initial_value
來設置緩衝區的初始值。如果啟用換行符轉換,則換行符將被編碼為write()
。流位於緩衝區的開頭。newline
參數的工作方式與TextIOWrapper
類似,除了將輸出寫入流時,如果newline
是None
,則換行符在所有平台上都寫為\n
。除了
TextIOBase
和IOBase
中的方法之外,StringIO
還提供此方法:示例用法:
import io output = io.StringIO() output.write('First line.\n') print('Second line.', file=output) # Retrieve file contents -- this will be # 'First line.\nSecond line.\n' contents = output.getvalue() # Close object and discard memory buffer -- # .getvalue() will now raise an exception. output.close()
相關用法
- Python io.text_encoding用法及代碼示例
- Python io.BytesIO.getbuffer用法及代碼示例
- Python import__用法及代碼示例
- Python itertools.takewhile用法及代碼示例
- Python string isalnum()用法及代碼示例
- Python id()用法及代碼示例
- Python ipaddress.collapse_addresses用法及代碼示例
- Python ipaddress.IPv4Address.reverse_pointer用法及代碼示例
- Python string isidentifier()用法及代碼示例
- Python numpy irr用法及代碼示例
- Python ipaddress.IPv4Address.__format__用法及代碼示例
- Python calendar isleap()用法及代碼示例
- Python itertools.compress用法及代碼示例
- Python math isclose()用法及代碼示例
- Python string isupper()用法及代碼示例
- Python itertools.dropwhile用法及代碼示例
- Python scipy integrate.trapz用法及代碼示例
- Python itertools.repeat用法及代碼示例
- Python ipaddress.IPv4Network.supernet用法及代碼示例
- Python iter用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 io.StringIO。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。