gpt4 book ai didi

python : Convert from C-Char to Int

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

我从二进制文件中读取了一个字符串,该文件使用 struct.unpack 解压为长度为 n 的字符串。

字符串中的每个字节都是一个表示 0-255 的整数(1 字节)。因此,对于字符串中的每个字符,我想将其转换为整数。

我不知道该怎么做。使用 ord 似乎不在正确的轨道上......

最佳答案

>>> import struct
>>> a = struct.pack("ccc", "a", "b", "c")
>>> a
b'abc'
>>> b = struct.unpack("ccc", a)
>>> b
(b'a', b'b', b'c')
>>> ord(b[0])
97
>>> c = struct.pack("BBB", 1, 2, 3)
>>> c
b'\x01\x02\x03'
>>> d = struct.unpack("BBB", c)
>>> d
(1, 2, 3)

对我有用。

关于 python : Convert from C-Char to Int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2922461/

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