gpt4 book ai didi

python - 有没有比 int( byte_buffer.encode ('hex' ), 16 ) 更好的方法

转载 作者:太空宇宙 更新时间:2023-11-03 12:52:27 25 4
gpt4 key购买 nike

在 Python 中,我经常使用以下序列从字节缓冲区中获取整数值(在 Python 中这是一个 str)。

我正在从 struct.unpack() 例程中获取缓冲区。当我使用

解压缩“char”时
byte_buffer, = struct.unpack('c', raw_buffer)
int_value = int( byte_buffer.encode('hex'), 16 )

有没有更好的方法?

最佳答案

struct模块擅长解包二进制数据。

int_value = struct.unpack('>I', byte_buffer)[0]

关于python - 有没有比 int( byte_buffer.encode ('hex' ), 16 ) 更好的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/918754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com