如何从长十六进制字符串创建Python字节对象?

发布于 2024-07-12 07:44:20 字数 192 浏览 7 评论 0原文

我在字符串中有一长串十六进制数字,例如

000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44

只是更长,几千字节。 python 2.6/3 中是否有内置方法将其转换为字节对象?

I have a long sequence of hex digits in a string, such as

000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44

only much longer, several kilobytes. Is there a builtin way to convert this to a bytes object in python 2.6/3?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

微暖i 2024-07-19 07:44:20
result = bytes.fromhex(some_hex_string)
result = bytes.fromhex(some_hex_string)
那伤。 2024-07-19 07:44:20

适用于 Python 2.7 及更高版本,包括 python3:

result = bytearray.fromhex('deadbeef')

注意: Python 2.6 中的 bytearray.fromhex() 函数似乎存在错误。 python.org 文档指出该函数接受字符串作为参数,但应用时会引发以下错误:

>>> bytearray.fromhex('B9 01EF')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: fromhex() argument 1 must be unicode, not str`

Works in Python 2.7 and higher including python3:

result = bytearray.fromhex('deadbeef')

Note: There seems to be a bug with the bytearray.fromhex() function in Python 2.6. The python.org documentation states that the function accepts a string as an argument, but when applied, the following error is thrown:

>>> bytearray.fromhex('B9 01EF')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: fromhex() argument 1 must be unicode, not str`
画中仙 2024-07-19 07:44:20

您可以使用十六进制编解码器来完成此操作。 IE:

>>> s='000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44'
>>> s.decode('hex')
'\x00\x00\x00\x00\x00\x00HB@\xfa\x06=\xe5\xd0\xb7D\xad\xbe\xd6:\x81\xfa\xea9\x00\x00\xc8B\x86@\xa4=P\x05\xbdD'

You can do this with the hex codec. ie:

>>> s='000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44'
>>> s.decode('hex')
'\x00\x00\x00\x00\x00\x00HB@\xfa\x06=\xe5\xd0\xb7D\xad\xbe\xd6:\x81\xfa\xea9\x00\x00\xc8B\x86@\xa4=P\x05\xbdD'
我们的影子 2024-07-19 07:44:20

尝试 binascii 模块

from binascii import unhexlify
b = unhexlify(myhexstr)

Try the binascii module

from binascii import unhexlify
b = unhexlify(myhexstr)
ら栖息 2024-07-19 07:44:20
import binascii

binascii.a2b_hex(hex_string)

我就是这么做的。

import binascii

binascii.a2b_hex(hex_string)

Thats the way I did it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文