导语:
本文主要介绍了关于python能读写内存吗的相关知识,包括python写入文本,以及python 读取指定内存这些编程知识,希望对大家有参考作用。
Python内存中的读取与写入
1、内存中的读写-StirngIO
StirngIO顾名思义就是在内存中读写str字符串
sio.write(str)
功能:将字符串写入sio对象中。
sio.getvalue()
功能:获取写入的内容
from io import StringIO#
sio = StringIO()
sio.write("hello")
sio.write("good")
print(sio.getvalue())
#结果:hellogood
sio2.read()
功能:一次性读取所有的sio对象中的内容
from io import StringIO#
sio2 = StringIO("hello jerry!!!")
print(sio2.read())
#结果:hello jerry!!!
2、在内存中读取二进制字符串-BytesIO
StringIO 只能对 str 进行操作。如果要操作二进制数据,就需要用到BytesIO。 BytesIO实现了内存中字节的读写。
与StringIO操作类似,但是注意要进行编码写入bytes
from io import BytesIO
f = BytesIO()
f.write("中文".encode('utf-8'))#写入的不是str,而是经过UTF-8编码的bytes
print(f.getvalue())#未解码
print(f.getvalue().decode("utf-8"))#解码
#结果
#未解码:b'\xe4\xb8\xad\xe6\x96\x87'
#解码:中文
from io import BytesIO
bio2 = BytesIO("中国红".encode("utf-8"))
print(bio2.read().decode("utf-8"))
#结果:中国红
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python如何保存生成的图片?08/18
- ♥ 如何在python中将字符串转换为数字08/17
- ♥ python中的冒号是什么意思09/06
- ♥ 什么是python龙卷风?如何使用?11/14
- ♥ 如何在 python 中安装 SKlearn?09/24
- ♥ 如何调试python11/28
内容反馈