gpt4 book ai didi

python - 如何将int转换为24位字符串?

转载 作者:行者123 更新时间:2023-11-28 22:04:35 24 4
gpt4 key购买 nike

阅读我使用:

def UI24(t):
result = 0
for i in xrange(3):
result = (result << 8);
byte = unpack('>b',t[i-1])
result += byte;
return result

和写?

最佳答案

简单地填充它们并作为多头处理

>>> from struct import pack, unpack
>>> def unpack24(s):
... return unpack(">L","\0"+s)[0]
...
>>> def pack24(i):
... return pack(">L",i)[1:]
...

关于python - 如何将int转换为24位字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6924098/

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