Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
struct.unpack('b', '\x01') # (1,) struct.unpack('<h', '\x46\x00') # (70,)
struct.unpack('bh', '\x01\x46\x00') Traceback (most recent call last): File "<input>", line 1, in <module> error: unpack requires a string argument of length 4
struct.unpack('<bh', '\x01\x46\x00') # (1, 70)