编程语言
首页 > 编程语言> > python – `struct.unpack_from`不适用于`bytearray`?

python – `struct.unpack_from`不适用于`bytearray`?

作者:互联网

从字符串解包工作:

>>> import struct
>>> struct.unpack('>h', 'ab')
(24930,)
>>> struct.unpack_from('>h', 'zabx', 1)
(24930,)

但如果它是一个bytearray:

>>> struct.unpack_from('>h', bytearray('zabx'), 1)
Traceback (most recent call last):
  File "<ipython-input-4-d58338aafb82>", line 1, in <module>
    struct.unpack_from('>h', bytearray('zabx'), 1)
TypeError: unpack_from() argument 1 must be string or read-only buffer, not bytearray

这似乎有点奇怪.我该怎么办呢?显然我可以:

>>> struct.unpack_from('>h', str(bytearray('zabx')), 1)
(24930,)

但我明确地试图避免复制可能的大量内存.

解决方法:

看起来像buffer()是解决方案:

>>> struct.unpack_from('>h', buffer(bytearray('zabx')), 1)
(24930,)

buffer()不是原始的副本,它的视图:

>>> b0 = bytearray('xaby')
>>> b1 = buffer(b0)
>>> b1
<read-only buffer for ...>
>>> b1[1:3]
'ab'
>>> b0[1:3] = 'nu'
>>> b1[1:3]
'nu'

另外,你(我?)可以使用python 3;解除限制:

Python 3.2.3 (default, Jun  8 2012, 05:36:09) 
[GCC 4.7.0 20120507 (Red Hat 4.7.0-5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import struct
>>> struct.unpack_from('>h', b'xaby', 1)
(24930,)
>>> struct.unpack_from('>h', bytearray(b'xaby'), 1)
(24930,)
>>> 

标签:python,binary-data
来源: https://codeday.me/bug/20190517/1122868.html