gpt4 book ai didi

python - 将字节串转换为字节或字节数组

转载 作者:太空狗 更新时间:2023-10-29 19:35:49 25 4
gpt4 key购买 nike

我有一个字符串如下:

  b'\x00\x00\x00\x00\x07\x80\x00\x03'

如何将其转换为字节数组? ...然后从字节返回到字符串?

最佳答案

在 python 3 中:

>>> a=b'\x00\x00\x00\x00\x07\x80\x00\x03'
>>> b = list(a)
>>> b
[0, 0, 0, 0, 7, 128, 0, 3]
>>> c = bytes(b)
>>> c
b'\x00\x00\x00\x00\x07\x80\x00\x03'
>>>

关于python - 将字节串转换为字节或字节数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35310695/

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