2020
09-27
09-27
python实现在内存中读写str和二进制数据代码
我就废话不多说了,还是直接看代码吧!#利用python在内存中读写str和二进制数据fromioimportStringIOfromioimportBytesIOf=StringIO()print(f.write('hello'))#6print(f.write('world!'))#6print(f.getvalue())#helloworld!f=BytesIO()print(f.write('中文'.encode('utf-8')))#6print(f.getvalue())#b'\xe4\xb8\xad\xe6\x96\x87'补充知识:python二进制转到float看代码吧!#-*-coding:utf-8-*-"""Cre...
继续阅读 >