class io.BytesIO([initial_bytes])
他是一个_io.BytesIO对象。
用这个类的实例可以操作内存缓冲区中的字节流。
>>> s = ‘hello‘ >>> b = s.encode() >>> b b‘hello‘ >>> import io >>> a = io.BytesIO(b) >>> a <_io.BytesIO object at 0x00000064DF5DA2B0> >>> c = a.getbuffer() >>> c <memory at 0x00000064DF5F0648>>>> n = ‘12‘>>> b1 = n.encode()>>> c[1:3] = b1>>> a.getvalue()b‘h12lo‘
使用该类的实例可以创建缓冲区并在缓冲区中操作字节流。
时间: 2024-10-15 22:01:54