码迷,mamicode.com
首页 > 编程语言 > 详细

python--StringIO-在内存中读写str

时间:2020-01-05 00:13:48      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:print   adl   使用   返回   mamicode   write   read   tar   字符串个数   

技术图片

StringIO

很多时候,数据读写不一定是文件,也可以在内存中读写。StringIO就是在内存中读写str

from io import StringIO

f = StringIO()    #创建StringIO对象
i=f.write(hello)  #写入字符串
#返回值:返回字符串个数
i=f.write( 李明)
str=f.getvalue()  #读取字符串

ff = StringIO(Hello!\nHi!\nGoodbye!)
s = ff.readline()  #读取一行
print(s)

 

 

BytesIO 

StringIO操作的只能是str,如果要操作二进制数据,就需要使用BytesIO

BytesIO实现了在内存中读写bytes

 

 

 

技术图片

python--StringIO-在内存中读写str

标签:print   adl   使用   返回   mamicode   write   read   tar   字符串个数   

原文地址:https://www.cnblogs.com/liming19680104/p/12150686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!