9

I am attempting to execute the code:

    values = (1, 'ab', 2.7)    
    s.struct.Struct('I 2s f')
    packed = s.pack(*values)

But I keep getting the error:

    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    struct.error: argument for 's' must be a bytes object

Why? How do I fix this?

4

1 回答 1

25

在 Python 3 中,'ab'不是bytes对象,在 Python 2 中称为 a str,它是unicode. 你需要使用:

values = (1, b'ab', 2.7)

它告诉 Python 这'ab'是一个字节文字。有关详细信息,请参阅PEP 3112

于 2012-04-10T03:09:16.047 回答